11 lines
180 B
Ruby
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
|