Change auto-following admin-selected accounts, show in recommendations (#16078)

This commit is contained in:
Eugen Rochko
2021-04-24 17:01:43 +02:00
committed by GitHub
parent 863ae47b51
commit daccc07dc1
16 changed files with 228 additions and 128 deletions

View File

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AccountSuggestions::Suggestion < ActiveModelSerializers::Model
attributes :account, :source
delegate :id, to: :account, prefix: true
end