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

Function aculConfigureCmd

internal/cli/acul.go:38–52  ·  view source on GitHub ↗
(cli *cli)

Source from the content-addressed store, hash-verified

36}
37
38func aculConfigureCmd(cli *cli) *cobra.Command {
39 cmd := &cobra.Command{
40 Use: "config",
41 Short: "Configure Advanced Customizations for Universal Login screens.",
42 Long: "Manage screen-level configuration for Auth0 Universal Login using ACUL (Advanced Customizations).",
43 }
44
45 cmd.AddCommand(aculConfigGenerateCmd(cli))
46 cmd.AddCommand(aculConfigGetCmd(cli))
47 cmd.AddCommand(aculConfigSetCmd(cli))
48 cmd.AddCommand(aculConfigListCmd(cli))
49 cmd.AddCommand(aculConfigDocsCmd(cli))
50
51 return cmd
52}
53
54// ensureACULPrerequisites checks that custom domain and new UL are enabled.
55func ensureACULPrerequisites(ctx context.Context, api *auth0.API) error {

Callers 1

aculCmdFunction · 0.85

Calls 5

aculConfigGenerateCmdFunction · 0.85
aculConfigGetCmdFunction · 0.85
aculConfigSetCmdFunction · 0.85
aculConfigListCmdFunction · 0.85
aculConfigDocsCmdFunction · 0.85

Tested by

no test coverage detected