Guest User

Untitled

a guest
Jan 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. module Api
  2.  
  3. class ThingDecorator < ActiveDecorator
  4.  
  5. def as_json(options = {})
  6. thing = decorated
  7.  
  8. {
  9. :id => thing.id,
  10. :name => thing.name,
  11. }
  12. end
  13.  
  14. end
  15.  
  16. end
Add Comment
Please, Sign In to add comment