Forked from abhishek0/ApplicationController.rb
Last active
December 20, 2015 20:09
-
-
Save rthbound/6188859 to your computer and use it in GitHub Desktop.
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 | |
before_action :require_login | |
private | |
def check_user | |
if not request.headers["user_id"].empty? | |
define_method(:get_user) { Users.get(id: request.headers["user_id"]) } | |
else | |
#halt this request | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment