Browse Source

fix status codes

master
Stephanie Gredell 1 year ago
parent
commit
a1e5e39a48
  1. 2
      auth/auth.go

2
auth/auth.go

@ -40,7 +40,7 @@ func Callback(c *gin.Context) {
} }
// For now, redirect to profile page after successful login // For now, redirect to profile page after successful login
c.Redirect(http.StatusTemporaryRedirect, "/") c.Redirect(http.StatusTemporaryRedirect, "/welcome")
} }
func Logout(c *gin.Context) { func Logout(c *gin.Context) {

Loading…
Cancel
Save