trabajo-afectivo/lib/knowledge_base/server_snippet.rb
2022-01-01 14:38:12 +01:00

30 lines
669 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class KnowledgeBase
class ServerSnippet
def initialize(knowledge_base)
@kb = knowledge_base
end
def render
raise Exceptions::UnprocessableEntity, __('Custom address is not set') if @kb.custom_address_uri.nil?
template_rewrite = host.present? ? template_full : template_path
"#{template_rewrite}\n#{template_original_url}"
end
def host
@kb.custom_address_uri&.host
end
def path
@kb.custom_address_uri&.path || ''
end
def template_path; end
def template_full; end
def template_original_url; end
end
end