7 lines
247 B
Ruby
7 lines
247 B
Ruby
class Suppliers::PageSerializer
|
|
include Qwaiter::SupplierBaseSerializer
|
|
attributes :title, :body, :locale, :position
|
|
attribute(:name) { object.name.to_s.sub /^suppliers-/, '' }
|
|
attribute(:id) { object.name.to_s.sub /^suppliers-/, '' }
|
|
end
|