summaryrefslogtreecommitdiff
path: root/app/helpers/application_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/application_helper.rb')
-rw-r--r--app/helpers/application_helper.rb12
1 files changed, 7 insertions, 5 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index f4b34044e0e..93b7c8c0b94 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -232,7 +232,7 @@ module ApplicationHelper
end
def support_url
- Gitlab::CurrentSettings.current_application_settings.help_page_support_url.presence || "#{promo_url}/getting-help/"
+ Gitlab::CurrentSettings.current_application_settings.help_page_support_url.presence || "#{promo_url}/get-help/"
end
def instance_review_permitted?
@@ -284,10 +284,6 @@ module ApplicationHelper
!params.has_key?(:no_startup_css)
end
- def use_new_fonts?
- Feature.enabled?(:new_fonts, current_user) || request.params.has_key?(:new_fonts)
- end
-
def outdated_browser?
browser.ie?
end
@@ -368,6 +364,12 @@ module ApplicationHelper
end
end
+ def discord_url(user)
+ return '' if user.discord.blank?
+
+ "https://discord.com/users/#{user.discord}"
+ end
+
def collapsed_sidebar?
cookies["sidebar_collapsed"] == "true"
end