Skip to content

Instantly share code, notes, and snippets.

@abhishek0
Created August 8, 2013 21:16
Show Gist options
  • Save abhishek0/6188829 to your computer and use it in GitHub Desktop.
Save abhishek0/6188829 to your computer and use it in GitHub Desktop.
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