shares_controller.rb 153 B

123456789
  1. # frozen_string_literal: true
  2. class SharesController < ApplicationController
  3. layout 'modal'
  4. before_action :authenticate_user!
  5. def show; end
  6. end