about summary refs log tree commit diff
path: root/app/helpers/application_helper.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2018-10-11 21:28:03 +0200
committerGitHub <noreply@github.com>2018-10-11 21:28:03 +0200
commit00759642446c41c9e9c428010ed0d3d3b79703bb (patch)
treef8cc02c4034d2436ea849a4f313c42eabc51a808 /app/helpers/application_helper.rb
parentbb1103d9742f088252f8156968a474ca8a58b087 (diff)
parent8f720be9f3ad314f0c0b0c7c0cc81616ba20e8fd (diff)
Merge pull request #775 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/helpers/application_helper.rb')
-rw-r--r--app/helpers/application_helper.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index c002017ef..e9b48fa98 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -82,4 +82,20 @@ module ApplicationHelper
     output << 'rtl' if locale_direction == 'rtl'
     output.reject(&:blank?).join(' ')
   end
+
+  def cdn_host
+    ENV['CDN_HOST'].presence
+  end
+
+  def cdn_host?
+    cdn_host.present?
+  end
+
+  def storage_host
+    ENV['S3_ALIAS_HOST'].presence || ENV['S3_CLOUDFRONT_HOST'].presence
+  end
+
+  def storage_host?
+    storage_host.present?
+  end
 end