This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-07-06 19:02:06 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountRelationshipsPresenter
|
|
|
|
attr_reader :following, :followed_by, :blocking,
|
|
|
|
:muting, :requested, :domain_blocking
|
|
|
|
|
2017-12-06 02:41:57 -08:00
|
|
|
def initialize(account_ids, current_account_id, **options)
|
2017-09-05 08:48:13 -07:00
|
|
|
@following = Account.following_map(account_ids, current_account_id).merge(options[:following_map] || {})
|
|
|
|
@followed_by = Account.followed_by_map(account_ids, current_account_id).merge(options[:followed_by_map] || {})
|
|
|
|
@blocking = Account.blocking_map(account_ids, current_account_id).merge(options[:blocking_map] || {})
|
|
|
|
@muting = Account.muting_map(account_ids, current_account_id).merge(options[:muting_map] || {})
|
|
|
|
@requested = Account.requested_map(account_ids, current_account_id).merge(options[:requested_map] || {})
|
|
|
|
@domain_blocking = Account.domain_blocking_map(account_ids, current_account_id).merge(options[:domain_blocking_map] || {})
|
2017-07-06 19:02:06 -07:00
|
|
|
end
|
|
|
|
end
|