demarches-normaliennes/app/serializers/service_serializer.rb

11 lines
346 B
Ruby
Raw Permalink Normal View History

class ServiceSerializer < ActiveModel::Serializer
2019-09-10 10:48:11 +02:00
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
2022-07-19 14:42:30 +02:00
attribute :siret, key: :siret
end