1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
This commit is contained in:
Daniel Barber 2018-05-25 15:49:28 -04:00
parent 193580d7b6
commit 430a34e906
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8

View File

@ -9,7 +9,7 @@ defmodule ChessWeb.PageController do
if current_user(conn) != nil do
conn |> redirect(to: game_path(conn, :index)) |> halt()
else
render(conn, "index.html")
render(conn, :index)
end
end
end