Files
mozo-backend/app/serializers/suppliers/page_serializer.rb
T
2025-09-20 17:35:58 -05:00

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