Skip to content

Instantly share code, notes, and snippets.

@MaryKuz
Created March 28, 2019 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaryKuz/06a4af9586e6198efc0c7c665d407161 to your computer and use it in GitHub Desktop.
Save MaryKuz/06a4af9586e6198efc0c7c665d407161 to your computer and use it in GitHub Desktop.
create a new decorator
class ProductDecorator < Draper::Decorator
delegate_all
def as_json *args
{
id: id,
name: name,
price: price,
description: description
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment