mirror of https://github.com/mastodon/mastodon
Change `source` attribute of `Suggestion` entity in `/api/v2/suggestions` back to a string (#29108)
parent
1e0b0a3486
commit
7ee93b7431
@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class AccountSuggestions::Suggestion < ActiveModelSerializers::Model
|
||||
attributes :account, :source
|
||||
attributes :account, :sources
|
||||
|
||||
delegate :id, to: :account, prefix: true
|
||||
end
|
||||
|
@ -1,7 +1,20 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class REST::SuggestionSerializer < ActiveModel::Serializer
|
||||
attributes :source
|
||||
attributes :source, :sources
|
||||
|
||||
has_one :account, serializer: REST::AccountSerializer
|
||||
|
||||
LEGACY_SOURCE_TYPE_MAP = {
|
||||
featured: 'staff',
|
||||
most_followed: 'global',
|
||||
most_interactions: 'global',
|
||||
# NOTE: Those are not completely accurate, but those are personalized interactions
|
||||
similar_to_recently_followed: 'past_interactions',
|
||||
friends_of_friends: 'past_interactions',
|
||||
}.freeze
|
||||
|
||||
def source
|
||||
LEGACY_SOURCE_TYPE_MAP[object.sources.first]
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue