-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DXCDT-545: Add
universal-login customize
command skeleton (#860)
- Loading branch information
Showing
6 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
layout: default | ||
parent: auth0 universal-login | ||
has_toc: false | ||
--- | ||
# auth0 universal-login customize | ||
|
||
Customize and preview changes to the Universal Login experience. This command will open a webpage within your browser where you can edit and preview your branding changes. For a comprehensive list of editable parameters and their values please visit the [Management API Documentation](https://auth0.com/docs/api/management/v2). | ||
|
||
## Usage | ||
``` | ||
auth0 universal-login customize [flags] | ||
``` | ||
|
||
## Examples | ||
|
||
``` | ||
auth0 universal-login customize | ||
auth0 ul customize | ||
``` | ||
|
||
|
||
|
||
|
||
## Inherited Flags | ||
|
||
``` | ||
--debug Enable debug mode. | ||
--no-color Disable colors. | ||
--no-input Disable interactivity. | ||
--tenant string Specific tenant to use. | ||
``` | ||
|
||
|
||
## Related Commands | ||
|
||
- [auth0 universal-login customize](auth0_universal-login_customize.md) - Customize the Universal Login experience | ||
- [auth0 universal-login prompts](auth0_universal-login_prompts.md) - Manage custom text for prompts | ||
- [auth0 universal-login show](auth0_universal-login_show.md) - Display the custom branding settings for Universal Login | ||
- [auth0 universal-login templates](auth0_universal-login_templates.md) - Manage custom Universal Login templates | ||
- [auth0 universal-login update](auth0_universal-login_update.md) - Update the custom branding settings for Universal Login | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package cli | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
func customizeUniversalLoginCmd(_ *cli) *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "customize", | ||
Args: cobra.NoArgs, | ||
Short: "Customize the Universal Login experience", | ||
Long: "Customize and preview changes to the Universal Login experience. This command will open a webpage " + | ||
"within your browser where you can edit and preview your branding changes. For a comprehensive list of " + | ||
"editable parameters and their values please visit the " + | ||
"[Management API Documentation](https://auth0.com/docs/api/management/v2).", | ||
Example: ` auth0 universal-login customize | ||
auth0 ul customize`, | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
return fmt.Errorf("not yet implemented") | ||
}, | ||
} | ||
|
||
return cmd | ||
} |