8 lines
188 B
Ruby
8 lines
188 B
Ruby
class SerializableContractTemplate < JSONAPI::Serializable::Resource
|
|
type 'contract_template'
|
|
|
|
ContractTemplate.new.attributes.keys.each do |attr|
|
|
attribute attr.to_sym
|
|
end
|
|
end
|