Created
April 23, 2016 07:00
-
-
Save Kalimaha/88ce99bc43bb9ba142aa3bd6e57cfc9b to your computer and use it in GitHub Desktop.
Application Controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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