scope.rb 238 B

12345678910111213
  1. # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
  2. class ApplicationPolicy
  3. class Scope
  4. include PunditPolicy
  5. attr_reader :scope
  6. def initialize_context(scope)
  7. @scope = scope
  8. end
  9. end
  10. end