2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2020-03-19 09:39:51 +00:00
|
|
|
class SettingPolicy < ApplicationPolicy
|
|
|
|
|
|
|
|
def show?
|
|
|
|
permitted?
|
|
|
|
end
|
|
|
|
|
|
|
|
def update?
|
|
|
|
permitted?
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def permitted?
|
2021-09-10 16:01:23 +00:00
|
|
|
return false if record.preferences[:protected]
|
2020-03-19 09:39:51 +00:00
|
|
|
return true if !record.preferences[:permission]
|
|
|
|
|
|
|
|
user.permissions?(record.preferences[:permission])
|
|
|
|
end
|
|
|
|
end
|