From a68e988567237eaac396ebf746e62a47baa5d4a4 Mon Sep 17 00:00:00 2001 From: Sergiu Ghitea <28300158+sergiught@users.noreply.github.com> Date: Sun, 12 Mar 2023 19:12:32 +0100 Subject: [PATCH] Add warning if using classic ul experience --- internal/cli/universal_login_templates.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/internal/cli/universal_login_templates.go b/internal/cli/universal_login_templates.go index 96ca49f45..2cad42fd0 100644 --- a/internal/cli/universal_login_templates.go +++ b/internal/cli/universal_login_templates.go @@ -79,6 +79,7 @@ type TemplateData struct { LogoURL string TenantName string Body string + Experience string } // ClientData is a minimal representation of an Auth0 Client as defined in the @@ -148,6 +149,14 @@ func updateBrandingTemplateCmd(cli *cli) *cobra.Command { return fmt.Errorf("failed to fetch the Universal Login template data: %w", err) } + if templateData.Experience == "classic" { + cli.renderer.Warnf( + "The tenant is configured to use the classic Universal Login Experience instead of the new. " + + "The template changes won't apply until you select the new Universal Login Experience. " + + "You can do so by running: \"auth0 api patch prompts --data '{\"universal_login_experience\":\"new\"}'\"", + ) + } + if templateData.Body == "" { if err := templateBody.Select(cmd, &templateData.Body, templateOptions.labels(), nil); err != nil { return fmt.Errorf("failed to select the desired template: %w", err) @@ -197,6 +206,12 @@ func (cli *cli) fetchTemplateData(ctx context.Context) (*TemplateData, error) { return ensureCustomDomainIsEnabled(ctx, cli.api) }) + var promptSettings *management.Prompt + group.Go(func() (err error) { + promptSettings, err = cli.api.Prompt.Read() + return err + }) + var clientList *management.ClientList group.Go(func() (err error) { // Capping the clients retrieved to 100 for now. @@ -232,6 +247,7 @@ func (cli *cli) fetchTemplateData(ctx context.Context) (*TemplateData, error) { LogoURL: brandingSettings.GetLogoURL(), TenantName: tenant.GetFriendlyName(), Body: currentTemplate.GetBody(), + Experience: promptSettings.UniversalLoginExperience, } for _, client := range clientList.Clients {