about summary refs log tree commit diff
path: root/app/serializers/rest/credential_account_serializer.rb
blob: 094b831c9642aca99be23fa705fb760683347c13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class REST::CredentialAccountSerializer < REST::AccountSerializer
  attributes :source

  def source
    user = object.user
    {
      privacy: user.setting_default_privacy,
      note: object.note,
    }
  end
end