mashirozx/mastodon

View on GitHub
app/models/account_suggestions/suggestion.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class AccountSuggestions::Suggestion < ActiveModelSerializers::Model
  attributes :account, :source

  delegate :id, to: :account, prefix: true
end