MCPcopy Create free account
hub / github.com/auth0/auth0-cli / universalLoginCmd

Function universalLoginCmd

internal/cli/universal_login.go:55–82  ·  view source on GitHub ↗
(cli *cli)

Source from the content-addressed store, hash-verified

53)
54
55func universalLoginCmd(cli *cli) *cobra.Command {
56 cmd := &cobra.Command{
57 Use: "universal-login",
58 Short: "Manage the Universal Login experience",
59 Long: `Manage Universal Login branding and customization settings.
60
61� DEPRECATION WARNING: Advanced Customizations (ACUL) have moved!
62
63The 'auth0 ul customize --rendering-mode advanced' functionality will be
64DEPRECATED on June 15, 2026. Please migrate to the new ACUL commands:
65
66 ✅ auth0 acul config generate|get|set|list|docs
67
68Standard Universal Login customizations continue to work as before.`,
69 Aliases: []string{"ul"},
70 }
71
72 cmd.SetUsageTemplate(resourceUsageTemplate())
73
74 cmd.AddCommand(customizeUniversalLoginCmd(cli))
75 cmd.AddCommand(switchUniversalLoginRendererModeCmd(cli))
76 cmd.AddCommand(showUniversalLoginCmd(cli))
77 cmd.AddCommand(updateUniversalLoginCmd(cli))
78 cmd.AddCommand(universalLoginTemplatesCmd(cli))
79 cmd.AddCommand(universalLoginPromptsTextCmd(cli))
80
81 return cmd
82}
83
84func universalLoginTemplatesCmd(cli *cli) *cobra.Command {
85 cmd := &cobra.Command{

Callers 1

addSubCommandsFunction · 0.85

Tested by

no test coverage detected