mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-17 01:38:15 +08:00
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
17 lines
408 B
Ruby
Vendored
17 lines
408 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module ConfigurableUrls
|
|
|
|
def faq_path
|
|
SiteSetting.faq_url.blank? ? "#{Discourse::base_uri}/faq" : SiteSetting.faq_url
|
|
end
|
|
|
|
def tos_path
|
|
SiteSetting.tos_url.blank? ? "#{Discourse::base_uri}/tos" : SiteSetting.tos_url
|
|
end
|
|
|
|
def privacy_path
|
|
SiteSetting.privacy_policy_url.blank? ? "#{Discourse::base_uri}/privacy" : SiteSetting.privacy_policy_url
|
|
end
|
|
|
|
end
|