blob: 9d233fdaef38641d550ee6a02551a74a260a178d (
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
end
end
|