parsley/app/serializers/note_serializer.rb

9 lines
182 B
Ruby
Raw Normal View History

2020-08-11 11:05:19 -05:00
class NoteSerializer < ApplicationSerializer
def serialize
{
**item_properties(:id, :content, :created_at),
url: note_path(item, format: :json)
}
end
end