5 lines
233 B
Ruby
5 lines
233 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class Controllers::FirstStepsControllerPolicy < Controllers::ApplicationControllerPolicy
|
|
permit! %i[index test_ticket], to: ['ticket.agent', 'admin']
|
|
end
|