2017-08-13 22:53:31 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SharesController < ApplicationController
|
2017-08-16 10:48:44 -04:00
|
|
|
layout 'modal'
|
2017-08-13 22:53:31 -04:00
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2019-08-16 13:15:05 -04:00
|
|
|
def show; end
|
2017-08-13 22:53:31 -04:00
|
|
|
end
|