Class: Pageflow::UserPolicy::Scope

Inherits:
Scope
  • Object
show all
Defined in:
app/policies/pageflow/user_policy.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(user, scope) ⇒ Scope

Returns a new instance of Scope.



6
7
8
9
# File 'app/policies/pageflow/user_policy.rb', line 6

def initialize(user, scope)
  @user = user
  @scope = scope
end

Instance Attribute Details

#scopeObject (readonly)

Returns the value of attribute scope.



4
5
6
# File 'app/policies/pageflow/user_policy.rb', line 4

def scope
  @scope
end

#userObject (readonly)

Returns the value of attribute user.



4
5
6
# File 'app/policies/pageflow/user_policy.rb', line 4

def user
  @user
end

Instance Method Details

#resolveObject



11
12
13
14
15
16
17
18
19
20
21
22
# File 'app/policies/pageflow/user_policy.rb', line 11

def resolve
  if user.admin?
    scope.all
  else
    manager_accounts_ids = AccountPolicy::Scope
                           .new(@user, Account).member_addable.map(&:id)

    scope.joins(:memberships)
      .where('pageflow_memberships.entity_type = \'Pageflow::Account\'')
      .where((manager_accounts_ids)).distinct
  end
end