aboutsummaryrefslogtreecommitdiffstats
path: root/app/policies/acces_point_policy.rb
blob: 4f604693c36cb4ce5d584be995739e0c34524b18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class AccessPointPolicy < ApplicationPolicy
  class Scope < Scope
    def resolve
      scope
    end
  end

  def create?
    user.has_permission?('access_points.create') # organisation match via referential is checked in the view
  end

  def edit?
    organisation_match?(via_referential: true) && user.has_permission?('access_points.edit')
  end

  def destroy?
    organisation_match?(via_referential: true) && user.has_permission?('access_points.destroy')
  end

  def update?  ; edit? end
  def new?     ; create? end
end