blob: a12055aa6edfe69678644500fd3fc4d5879aa7ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
class RoutePolicy < ApplicationPolicy
class Scope < Scope
def resolve
scope
end
end
def create?
!archived? && user.has_permission?('routes.create') # organisation match via referential is checked in the view
end
def edit?
!archived? && organisation_match? && user.has_permission?('routes.edit')
end
def destroy?
!archived? && organisation_match? && user.has_permission?('routes.destroy')
end
def update? ; edit? end
def new? ; create? end
end
|