5 lines
126 B
Ruby
5 lines
126 B
Ruby
|
|
class SerializableProject < JSONAPI::Serializable::Resource
|
||
|
|
type 'project'
|
||
|
|
attributes :name, :created_at, :updated_at
|
||
|
|
end
|