1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/controllers/shares_controller.rb

17 lines
282 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class SharesController < ApplicationController
layout 'modal'
before_action :authenticate_user!
before_action :set_body_classes
def show; end
private
def set_body_classes
2018-01-01 20:07:56 -08:00
@body_classes = 'modal-layout compose-standalone'
end
end