This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-08-13 19:53:31 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SharesController < ApplicationController
|
2017-08-16 07:48:44 -07:00
|
|
|
layout 'modal'
|
2017-08-13 19:53:31 -07:00
|
|
|
|
|
|
|
before_action :authenticate_user!
|
2017-08-16 07:48:44 -07:00
|
|
|
before_action :set_body_classes
|
2017-08-13 19:53:31 -07:00
|
|
|
|
2019-08-16 10:15:05 -07:00
|
|
|
def show; end
|
2017-08-13 19:53:31 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-08-16 07:48:44 -07:00
|
|
|
def set_body_classes
|
2018-01-01 20:07:56 -08:00
|
|
|
@body_classes = 'modal-layout compose-standalone'
|
2017-08-16 07:48:44 -07:00
|
|
|
end
|
2017-08-13 19:53:31 -07:00
|
|
|
end
|