mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2025-10-16 18:41:15 +00:00
14 lines
247 B
Ruby
14 lines
247 B
Ruby
|
# 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
|