enviar a blazer

This commit is contained in:
f 2022-03-14 17:32:54 -03:00
parent 0612d16e6b
commit c019c5ba20

View file

@ -2,9 +2,12 @@
class ApplicationController < ActionController::Base class ApplicationController < ActionController::Base
before_action :authenticate_user! before_action :authenticate_user!
def require_user def require_user
redirect_to root_path unless current_user redirect_to root_path unless current_user
end end
def index def index
redirect_to blazer_path
end end
end end