2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2020-03-19 09:39:51 +00:00
|
|
|
class Controllers::OrganizationsControllerPolicy < Controllers::ApplicationControllerPolicy
|
2020-12-08 13:23:33 +00:00
|
|
|
permit! :import_example, to: 'admin.organization'
|
2020-03-19 09:39:51 +00:00
|
|
|
permit! :import_start, to: 'admin.user'
|
2020-12-08 13:23:33 +00:00
|
|
|
permit! %i[create update destroy search history], to: ['ticket.agent', 'admin.organization']
|
2020-03-19 09:39:51 +00:00
|
|
|
|
|
|
|
def show?
|
|
|
|
return true if user.permissions?(['ticket.agent', 'admin.organization'])
|
|
|
|
|
|
|
|
record.params[:id].to_i == user.organization_id
|
|
|
|
end
|
|
|
|
end
|