1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-23 11:08:21 +09:00
mastodon/app/serializers/rest/credential_account_serializer.rb

14 lines
247 B
Ruby
Raw Normal View History

# 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