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