mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-13 10:31:23 +00:00
10 lines
392 B
Ruby
10 lines
392 B
Ruby
extends 'activitypub/types/person.rabl'
|
|
|
|
object @account
|
|
|
|
node(:url) { |account| TagManager.instance.url_for(account) }
|
|
node(:name) { |account| account.display_name }
|
|
node(:preferredUsername) { |account| account.username }
|
|
node(:summary) { |account| account.note }
|
|
node(:icon) { |account| full_asset_url(account.avatar.url(:original)) }
|