0
0
Fork 0

Add profile directory to web UI (#11688)

* Add profile directory to web UI

* Add a line of bio to the directory
This commit is contained in:
Eugen Rochko 2019-08-30 00:14:36 +02:00 committed by GitHub
parent 7802ebd5f3
commit cb447b28c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 715 additions and 159 deletions

View file

@ -6,12 +6,14 @@ class ActivityPub::ActorSerializer < ActivityPub::Serializer
context :security
context_extensions :manually_approves_followers, :featured, :also_known_as,
:moved_to, :property_value, :hashtag, :emoji, :identity_proof
:moved_to, :property_value, :hashtag, :emoji, :identity_proof,
:discoverable
attributes :id, :type, :following, :followers,
:inbox, :outbox, :featured,
:preferred_username, :name, :summary,
:url, :manually_approves_followers
:url, :manually_approves_followers,
:discoverable
has_one :public_key, serializer: ActivityPub::PublicKeySerializer

View file

@ -5,7 +5,7 @@ class REST::AccountSerializer < ActiveModel::Serializer
attributes :id, :username, :acct, :display_name, :locked, :bot, :created_at,
:note, :url, :avatar, :avatar_static, :header, :header_static,
:followers_count, :following_count, :statuses_count
:followers_count, :following_count, :statuses_count, :last_status_at
has_one :moved_to_account, key: :moved, serializer: REST::AccountSerializer, if: :moved_and_not_nested?
has_many :emojis, serializer: REST::CustomEmojiSerializer