class HomeController < ApplicationController skip_before_action :authenticate_user! def index redirect_to character_path(current_char) if current_char end end