1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-18 16:43:51 -05:00

8 lines
179 B
Ruby

# frozen_string_literal: true
class AccountSuggestions::Suggestion < ActiveModelSerializers::Model
attributes :account, :source
delegate :id, to: :account, prefix: true
end