akkounts/app/controllers/welcome_controller.rb

11 lines
180 B
Ruby

class WelcomeController < ApplicationController
def index
if user_signed_in?
redirect_to root_path and return
end
end
def reset_password_check_email
end
end