summaryrefslogtreecommitdiff
path: root/app/controllers/home_controller.rb
blob: a224f7b5280f62bd375f24260a421b04197794ee (plain)
1
2
3
4
5
6
7
class HomeController < ApplicationController
  skip_before_action :authenticate_user!

  def index
    redirect_to character_path(current_char) if current_char
  end
end