1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-25 07:37:08 +09:00
whippy-edition/app/models/instance.rb

13 lines
228 B
Ruby
Raw Normal View History

# 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