mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
8 lines
128 B
Ruby
8 lines
128 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
class UserSerializer < ActiveModel::Serializer
|
|
attributes :id, :email
|
|
end
|
|
end
|