2017-08-14 02:53:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SharesController < ApplicationController
|
2017-08-16 14:48:44 +00:00
|
|
|
layout 'modal'
|
2017-08-14 02:53:31 +00:00
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2019-08-16 17:15:05 +00:00
|
|
|
def show; end
|
2017-08-14 02:53:31 +00:00
|
|
|
end
|