Ver código fonte

Update accept.go

Porter Support 3 anos atrás
pai
commit
392f479fe1
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      ee/api/server/handlers/invite/accept.go

+ 1 - 1
ee/api/server/handlers/invite/accept.go

@@ -104,5 +104,5 @@ func (c *InviteAcceptHandler) ServeHTTP(w http.ResponseWriter, r *http.Request)
 		return
 	}
 
-	http.Redirect(w, r, "/dashboard", 302)
+	http.Redirect(w, r, fmt.Sprintf("/register?email=%s", invite.Email), 302)
 }