10 lines
170 B
Ruby
10 lines
170 B
Ruby
|
|
class SerializableNote < JSONAPI::Serializable::Resource
|
||
|
|
type 'note'
|
||
|
|
|
||
|
|
Note.new.attributes.keys.each do |attr|
|
||
|
|
attribute attr.to_sym
|
||
|
|
end
|
||
|
|
|
||
|
|
attribute :email
|
||
|
|
end
|