Fixed comment in auth

This commit is contained in:
Eduard Urbach 2018-06-04 17:18:07 +09:00
parent 75dd2a6990
commit 318e4bcdce
2 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@ func InstallFacebookAuth(app *aero.Application) {
// Log // Log
authLog.Info("Registered new user via Facebook", user.ID, user.Nick, ctx.RealIP(), user.Email, user.RealName()) 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) return ctx.Redirect(newUserStartRoute)
}) })
} }

View File

@ -168,7 +168,7 @@ func InstallGoogleAuth(app *aero.Application) {
// Log // Log
authLog.Info("Registered new user via Google", user.ID, user.Nick, ctx.RealIP(), user.Email, user.RealName()) 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) return ctx.Redirect(newUserStartRoute)
}) })
} }