trabajo-afectivo/app/policies/application_policy/scope.rb
2022-01-01 14:38:12 +01:00

13 lines
238 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class ApplicationPolicy
class Scope
include PunditPolicy
attr_reader :scope
def initialize_context(scope)
@scope = scope
end
end
end