Created
August 8, 2013 21:16
-
-
Save abhishek0/6188829 to your computer and use it in GitHub Desktop.
This file contains 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? | |
def self.get_user | |
Users.get({id => request.headers["user_id"]}) | |
end | |
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