diff --git a/auth/facebook.go b/auth/facebook.go index 6704c608..e639e93e 100644 --- a/auth/facebook.go +++ b/auth/facebook.go @@ -158,7 +158,7 @@ func InstallFacebookAuth(app *aero.Application) { // Log authLog.Info("Registered new user via Facebook", user.ID, user.Nick, ctx.RealIP(), user.Email, user.RealName()) - // Redirect to settings + // Redirect to starting page for new users return ctx.Redirect(newUserStartRoute) }) } diff --git a/auth/google.go b/auth/google.go index aee7648d..e48f9ede 100644 --- a/auth/google.go +++ b/auth/google.go @@ -168,7 +168,7 @@ func InstallGoogleAuth(app *aero.Application) { // Log authLog.Info("Registered new user via Google", user.ID, user.Nick, ctx.RealIP(), user.Email, user.RealName()) - // Redirect to frontpage + // Redirect to starting page for new users return ctx.Redirect(newUserStartRoute) }) }