Skip to content

Instantly share code, notes, and snippets.

@rthbound
Forked from abhishek0/ApplicationController.rb
Last active December 20, 2015 20:09
Show Gist options
  • Save rthbound/6188859 to your computer and use it in GitHub Desktop.
Save rthbound/6188859 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?
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