Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1.  
  2. module ApplicationHelper
  3. def resource
  4. @resource ||= User.new
  5. end
  6.  
  7. def resource_name
  8. :user
  9. end
  10.  
  11. def resource_class
  12. User
  13. end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement