blob: 09379c46705ebc8ec68fb6f61f38198d5ac75c19 (
plain)
1
2
3
4
5
6
7
8
|
# frozen_string_literal: true
module Serializers
# The serializer for the user account model.
class UserAccountSerializer < BaseSerializer
attributes :email, :first_name, :last_name, :role
end
end
|