From 68a7ba55f7e487a9bb6616a173ef36cf5a8c4e55 Mon Sep 17 00:00:00 2001 From: Gianluca Arbezzano Date: Wed, 4 Mar 2026 11:10:58 +0100 Subject: [PATCH] chore: redirect authorized user to list of commands page I am sure we can write a better landing page as a user but I feel we do not have it yet and I am not sure what a user wants to do right after ctl login. --- internal/cmd/auth/login.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/auth/login.go b/internal/cmd/auth/login.go index 6748241..03fec85 100644 --- a/internal/cmd/auth/login.go +++ b/internal/cmd/auth/login.go @@ -192,7 +192,7 @@ func runLoginFlow(ctx context.Context, authHostname string, apiHostname string, } // Redirect to documentation site upon success - http.Redirect(w, r, "https://docs.datum.net", http.StatusFound) + http.Redirect(w, r, "https://www.datum.net/docs/datumctl/cli-reference/#see-also", http.StatusFound) codeChan <- code // Send code // Server shutdown will be initiated by the main goroutine now