mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 07:31:12 +01: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
|