blob: c0c9218c23b913e53b9f4865bb277c135c192cae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
class JourneyPatternPolicy < ApplicationPolicy
class Scope < Scope
def resolve
scope
end
end
def create?
!archived? && organisation_match? && user.has_permission?('journey_patterns.create')
end
def destroy?
!archived? && organisation_match? && user.has_permission?('journey_patterns.destroy')
end
def update?
!archived? && organisation_match? && user.has_permission?('journey_patterns.update')
end
end
|