20 lines
374 B
Ruby
20 lines
374 B
Ruby
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
||
|
|
||
|
class KnowledgeBase::AnswerPolicy < ApplicationPolicy
|
||
|
class Scope < ApplicationPolicy::Scope
|
||
|
def resolve
|
||
|
if user&.permissions?('knowledge_base.editor')
|
||
|
scope
|
||
|
else
|
||
|
scope.published
|
||
|
end
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def user_required?
|
||
|
false
|
||
|
end
|
||
|
end
|
||
|
end
|