about summary refs log tree commit diff
path: root/app/controllers/shares_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/shares_controller.rb')
-rw-r--r--app/controllers/shares_controller.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/controllers/shares_controller.rb b/app/controllers/shares_controller.rb
index 6546b8497..e13e7e8b6 100644
--- a/app/controllers/shares_controller.rb
+++ b/app/controllers/shares_controller.rb
@@ -4,12 +4,17 @@ class SharesController < ApplicationController
   layout 'modal'
 
   before_action :authenticate_user!
+  before_action :set_pack
   before_action :set_body_classes
 
   def show; end
 
   private
 
+  def set_pack
+    use_pack 'share'
+  end
+
   def set_body_classes
     @body_classes = 'modal-layout compose-standalone'
   end