mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
13 lines
228 B
Ruby
13 lines
228 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Instance
|
|
include ActiveModel::Model
|
|
|
|
attr_accessor :domain, :accounts_count
|
|
|
|
def initialize(account)
|
|
@domain = account.domain
|
|
@accounts_count = account.accounts_count
|
|
end
|
|
end
|