5 lines
226 B
Ruby
5 lines
226 B
Ruby
|
class Controllers::SignaturesControllerPolicy < Controllers::ApplicationControllerPolicy
|
||
|
permit! %i[index show], to: ['ticket.agent', 'admin.channel_email']
|
||
|
permit! %i[create update destroy], to: 'admin.channel_email'
|
||
|
end
|