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

  def create?
    !referential_read_only? && organisation_match? && user.has_permission?('access_points.create')
  end

  def update?
    !referential_read_only? && organisation_match? && user.has_permission?('access_points.update')
  end

  def destroy?
    !referential_read_only? && organisation_match? && user.has_permission?('access_points.destroy')
  end
end