summaryrefslogtreecommitdiff
path: root/app/serializers/user_account_serializer.rb
blob: aae0594a7784a1e7a3aa30888ec7456db005eea0 (plain)
1
2
3
4
5
6
# frozen_string_literal: true

# The serializer for the user account model.
class UserAccountSerializer < BaseSerializer
  attributes :email, :first_name, :last_name, :role
end