(cli *cli)
| 36 | } |
| 37 | |
| 38 | func 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. |
| 55 | func ensureACULPrerequisites(ctx context.Context, api *auth0.API) error { |
no test coverage detected