akkounts/app/controllers/welcome_controller.rb
Sebastian Kippe e45d0a4a4f
Don't use welcome view for now
No signups yet. Just show login for MVP.
2020-11-18 13:31:14 +01:00

13 lines
218 B
Ruby

class WelcomeController < ApplicationController
def index
if user_signed_in?
redirect_to root_path
else
redirect_to new_user_session_path
end
end
def reset_password_check_email
end
end