Skip to content

Instantly share code, notes, and snippets.

@amiel
Created November 3, 2011 18:59
Show Gist options
  • Save amiel/1337448 to your computer and use it in GitHub Desktop.
Save amiel/1337448 to your computer and use it in GitHub Desktop.
module ApplicationHelper
def current_user
super.decorator
end
end
# In the controller
current_user.class # => User
# In the view
current_user.class # => UserDecorator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment