mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00: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
|