1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-29 23:38:51 +09:00
whippy-edition/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