about summary refs log tree commit diff
path: root/app/helpers
diff options
context:
space:
mode:
authorJeong Arm <kjwonmail@gmail.com>2021-02-11 10:18:56 +0900
committerGitHub <noreply@github.com>2021-02-11 02:18:56 +0100
commitd499bb031f0d20a5f27facfd57cf4e00f89003d7 (patch)
tree4f3b173c5141722636318d76db7ba0e2655a3d94 /app/helpers
parent6feaad33f22060cc113890325ef1802378b6f27b (diff)
Use custom mascot on static share page (#15687)
* Use custom mascot on static share page

* Use full_asset_url
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/mascot_helper.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/helpers/mascot_helper.rb b/app/helpers/mascot_helper.rb
new file mode 100644
index 000000000..0124c74f1
--- /dev/null
+++ b/app/helpers/mascot_helper.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+module MascotHelper
+  def mascot_url
+    full_asset_url(instance_presenter.mascot&.file&.url || asset_pack_path('media/images/elephant_ui_plane.svg'))
+  end
+
+  private
+
+  def instance_presenter
+    @instance_presenter ||= InstancePresenter.new
+  end
+end