mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 05:26:27 +01:00
12 lines
228 B
Ruby
12 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
|