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 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
|