demarches-normaliennes/app/serializers/service_serializer.rb
2022-09-06 09:23:52 +02:00

10 lines
346 B
Ruby

class ServiceSerializer < ActiveModel::Serializer
attributes :id, :email
attribute :nom, key: :name
attribute :type_organisme, key: :type_organization
attribute :organisme, key: :organization
attribute :telephone, key: :phone
attribute :horaires, key: :schedule
attribute :adresse, key: :address
attribute :siret, key: :siret
end