Skip to content

Instantly share code, notes, and snippets.

@benlieb
Created May 4, 2013 23:16
Show Gist options
  • Save benlieb/5519108 to your computer and use it in GitHub Desktop.
Save benlieb/5519108 to your computer and use it in GitHub Desktop.
before_filter :current_user_to_AR
protected
def current_user_to_AR
cu = current_user
ActiveRecord::Base.send(:define_method, "current_user", proc {cu})
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment