bcgoss/census

View on GitHub
app/controllers/home_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class HomeController < ApplicationController

  def index
    if current_user
      redirect_to users_path
    else
      redirect_to new_user_session_path
    end
  end
end