2017-08-13 21:53:31 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SharesController < ApplicationController
|
2017-08-16 09:48:44 -05:00
|
|
|
layout 'modal'
|
2017-08-13 21:53:31 -05:00
|
|
|
|
|
|
|
before_action :authenticate_user!
|
2017-11-21 00:13:37 -06:00
|
|
|
before_action :set_pack
|
2017-08-16 09:48:44 -05:00
|
|
|
before_action :set_body_classes
|
2017-08-13 21:53:31 -05:00
|
|
|
|
2019-08-16 12:15:05 -05:00
|
|
|
def show; end
|
2017-08-13 21:53:31 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-11-21 00:13:37 -06:00
|
|
|
def set_pack
|
|
|
|
use_pack 'share'
|
|
|
|
end
|
|
|
|
|
2017-08-16 09:48:44 -05:00
|
|
|
def set_body_classes
|
2018-01-01 22:07:56 -06:00
|
|
|
@body_classes = 'modal-layout compose-standalone'
|
2017-08-16 09:48:44 -05:00
|
|
|
end
|
2017-08-13 21:53:31 -05:00
|
|
|
end
|