Class: Pageflow::ThemingPolicy::Scope

Inherits:
Scope
  • Object
show all
Defined in:
app/policies/pageflow/theming_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/theming_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/theming_policy.rb', line 4

def scope
  @scope
end

#userObject (readonly)

Returns the value of attribute user.



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

def user
  @user
end

Instance Method Details

#themings_allowed_for(accounts) ⇒ Object



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

def themings_allowed_for(accounts)
  if user.admin?
    scope.all
  else
    accounts_ids = accounts.try(:id) || accounts.try(:length) && accounts.map(&:id)
    scope.joins(publisher_memberships_for_accounts(user, accounts_ids))
      .where(membership_is_present)
  end
end