Skip to content

Instantly share code, notes, and snippets.

@Kalimaha
Created April 23, 2016 07:00
Show Gist options
  • Select an option

  • Save Kalimaha/88ce99bc43bb9ba142aa3bd6e57cfc9b to your computer and use it in GitHub Desktop.

Select an option

Save Kalimaha/88ce99bc43bb9ba142aa3bd6e57cfc9b to your computer and use it in GitHub Desktop.
Application Controller
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
before_action :initialize_helper
skip_before_filter :verify_authenticity_token
def initialize_helper
init_redis
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment