diff --git a/app/controllers/my_controller.rb b/app/controllers/my_controller.rb index c2ad542..09d3ceb 100644 --- a/app/controllers/my_controller.rb +++ b/app/controllers/my_controller.rb @@ -1,7 +1,9 @@ # User profiles and screenshot upload management class MyController < ApplicationController - def index - end + before_action :authenticate_user! + + # def profile + # end def uploads # @current_users_screenshots gets filled in ApplicationController @@ -11,7 +13,7 @@ class MyController < ApplicationController 'screenshots.id' => @current_users_screenshots) end - def welcome - end + # def welcome + # end end