Skip to content

Commit 8a69cff

Browse files
committed
enhance acul config command with doc updates
1 parent 2b9561f commit 8a69cff

18 files changed

+197
-212
lines changed

docs/auth0_acul.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: default
3+
has_toc: false
4+
---
5+
# auth0 acul
6+
7+
Customize the Universal Login experience. This requires a custom domain to be configured for the tenant.
8+
9+
## Commands
10+
11+
- [auth0 acul config](auth0_acul_config.md) - Configure Advanced Customizations for Universal Login screens.
12+

docs/auth0_acul_config.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
layout: default
3+
has_toc: false
4+
has_children: true
5+
---
6+
# auth0 acul config
7+
8+
Manage screen-level configuration for Auth0 Universal Login using ACUL (Advanced Customizations).
9+
10+
## Commands
11+
12+
- [auth0 acul config docs](auth0_acul_config_docs.md) - Open the ACUL configuration documentation
13+
- [auth0 acul config generate](auth0_acul_config_generate.md) - Generate a stub config file for a Universal Login screen.
14+
- [auth0 acul config get](auth0_acul_config_get.md) - Get the current rendering settings for a specific screen
15+
- [auth0 acul config list](auth0_acul_config_list.md) - List Universal Login rendering configurations
16+
- [auth0 acul config set](auth0_acul_config_set.md) - Set the rendering settings for a specific screen
17+

docs/auth0_acul_config_docs.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
layout: default
3+
parent: auth0 acul config
4+
has_toc: false
5+
---
6+
# auth0 acul config docs
7+
8+
Open the documentation for configuring Advanced Customizations for Universal Login screens.
9+
10+
## Usage
11+
```
12+
auth0 acul config docs [flags]
13+
```
14+
15+
## Examples
16+
17+
```
18+
auth0 acul config docs
19+
```
20+
21+
22+
23+
24+
## Inherited Flags
25+
26+
```
27+
--debug Enable debug mode.
28+
--no-color Disable colors.
29+
--no-input Disable interactivity.
30+
--tenant string Specific tenant to use.
31+
```
32+
33+
34+
## Related Commands
35+
36+
- [auth0 acul config docs](auth0_acul_config_docs.md) - Open the ACUL configuration documentation
37+
- [auth0 acul config generate](auth0_acul_config_generate.md) - Generate a stub config file for a Universal Login screen.
38+
- [auth0 acul config get](auth0_acul_config_get.md) - Get the current rendering settings for a specific screen
39+
- [auth0 acul config list](auth0_acul_config_list.md) - List Universal Login rendering configurations
40+
- [auth0 acul config set](auth0_acul_config_set.md) - Set the rendering settings for a specific screen
41+
42+
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
layout: default
3-
parent: auth0 config
3+
parent: auth0 acul config
44
has_toc: false
55
---
6-
# auth0 config generate
6+
# auth0 acul config generate
77

88
Generate a stub config file for a Universal Login screen and save it to a file.
99
If fileName is not provided, it will default to <screen-name>.json in the current directory.
1010

1111
## Usage
1212
```
13-
auth0 config generate [flags]
13+
auth0 acul config generate [flags]
1414
```
1515

1616
## Examples
@@ -40,10 +40,10 @@ auth0 config generate [flags]
4040

4141
## Related Commands
4242

43-
- [auth0 config docs](auth0_config_docs.md) - Open the ACUL configuration documentation
44-
- [auth0 config generate](auth0_config_generate.md) - Generate a stub config file for a Universal Login screen.
45-
- [auth0 config get](auth0_config_get.md) - Get the current rendering settings for a specific screen
46-
- [auth0 config list](auth0_config_list.md) - List Universal Login rendering configurations
47-
- [auth0 config set](auth0_config_set.md) - Set the rendering settings for a specific screen
43+
- [auth0 acul config docs](auth0_acul_config_docs.md) - Open the ACUL configuration documentation
44+
- [auth0 acul config generate](auth0_acul_config_generate.md) - Generate a stub config file for a Universal Login screen.
45+
- [auth0 acul config get](auth0_acul_config_get.md) - Get the current rendering settings for a specific screen
46+
- [auth0 acul config list](auth0_acul_config_list.md) - List Universal Login rendering configurations
47+
- [auth0 acul config set](auth0_acul_config_set.md) - Set the rendering settings for a specific screen
4848

4949

docs/auth0_acul_config_get.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
layout: default
3+
parent: auth0 acul config
4+
has_toc: false
5+
---
6+
# auth0 acul config get
7+
8+
Get the current rendering settings for a specific screen.
9+
10+
## Usage
11+
```
12+
auth0 acul config get [flags]
13+
```
14+
15+
## Examples
16+
17+
```
18+
auth0 acul config get signup-id
19+
auth0 acul config get login-id -f ./login.json"
20+
```
21+
22+
23+
## Flags
24+
25+
```
26+
-f, --file string File to save the rendering configs to.
27+
```
28+
29+
30+
## Inherited Flags
31+
32+
```
33+
--debug Enable debug mode.
34+
--no-color Disable colors.
35+
--no-input Disable interactivity.
36+
--tenant string Specific tenant to use.
37+
```
38+
39+
40+
## Related Commands
41+
42+
- [auth0 acul config docs](auth0_acul_config_docs.md) - Open the ACUL configuration documentation
43+
- [auth0 acul config generate](auth0_acul_config_generate.md) - Generate a stub config file for a Universal Login screen.
44+
- [auth0 acul config get](auth0_acul_config_get.md) - Get the current rendering settings for a specific screen
45+
- [auth0 acul config list](auth0_acul_config_list.md) - List Universal Login rendering configurations
46+
- [auth0 acul config set](auth0_acul_config_set.md) - Set the rendering settings for a specific screen
47+
48+
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
layout: default
3-
parent: auth0 config
3+
parent: auth0 acul config
44
has_toc: false
55
---
6-
# auth0 config list
6+
# auth0 acul config list
77

88
List Universal Login rendering configurations with optional filters and pagination.
99

1010
## Usage
1111
```
12-
auth0 config list [flags]
12+
auth0 acul config list [flags]
1313
```
1414

1515
## Examples
@@ -48,10 +48,10 @@ auth0 config list [flags]
4848

4949
## Related Commands
5050

51-
- [auth0 config docs](auth0_config_docs.md) - Open the ACUL configuration documentation
52-
- [auth0 config generate](auth0_config_generate.md) - Generate a stub config file for a Universal Login screen.
53-
- [auth0 config get](auth0_config_get.md) - Get the current rendering settings for a specific screen
54-
- [auth0 config list](auth0_config_list.md) - List Universal Login rendering configurations
55-
- [auth0 config set](auth0_config_set.md) - Set the rendering settings for a specific screen
51+
- [auth0 acul config docs](auth0_acul_config_docs.md) - Open the ACUL configuration documentation
52+
- [auth0 acul config generate](auth0_acul_config_generate.md) - Generate a stub config file for a Universal Login screen.
53+
- [auth0 acul config get](auth0_acul_config_get.md) - Get the current rendering settings for a specific screen
54+
- [auth0 acul config list](auth0_acul_config_list.md) - List Universal Login rendering configurations
55+
- [auth0 acul config set](auth0_acul_config_set.md) - Set the rendering settings for a specific screen
5656

5757

docs/auth0_acul_config_set.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
layout: default
3+
parent: auth0 acul config
4+
has_toc: false
5+
---
6+
# auth0 acul config set
7+
8+
Set the rendering settings for a specific screen.
9+
10+
## Usage
11+
```
12+
auth0 acul config set [flags]
13+
```
14+
15+
## Examples
16+
17+
```
18+
auth0 acul config set signup-id --file settings.json
19+
auth0 acul config set login-id
20+
```
21+
22+
23+
## Flags
24+
25+
```
26+
-f, --file string File to save the rendering configs to.
27+
```
28+
29+
30+
## Inherited Flags
31+
32+
```
33+
--debug Enable debug mode.
34+
--no-color Disable colors.
35+
--no-input Disable interactivity.
36+
--tenant string Specific tenant to use.
37+
```
38+
39+
40+
## Related Commands
41+
42+
- [auth0 acul config docs](auth0_acul_config_docs.md) - Open the ACUL configuration documentation
43+
- [auth0 acul config generate](auth0_acul_config_generate.md) - Generate a stub config file for a Universal Login screen.
44+
- [auth0 acul config get](auth0_acul_config_get.md) - Get the current rendering settings for a specific screen
45+
- [auth0 acul config list](auth0_acul_config_list.md) - List Universal Login rendering configurations
46+
- [auth0 acul config set](auth0_acul_config_set.md) - Set the rendering settings for a specific screen
47+
48+

docs/auth0_config.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

docs/auth0_config_docs.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

docs/auth0_config_get.md

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)