File tree Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -391,6 +391,7 @@ Management Endpoints
391
391
- Actions() (`` Auth0().actions`` )
392
392
- AttackProtection() (`` Auth0().attack_protection`` )
393
393
- Blacklists() ( `` Auth0().blacklists`` )
394
+ - Branding() ( `` Auth0().branding`` )
394
395
- ClientGrants() ( `` Auth0().client_grants`` )
395
396
- Clients() ( `` Auth0().clients`` )
396
397
- Connections() ( `` Auth0().connections`` )
Original file line number Diff line number Diff line change 2
2
from .attack_protection import AttackProtection
3
3
from .auth0 import Auth0
4
4
from .blacklists import Blacklists
5
+ from .branding import Branding
5
6
from .client_grants import ClientGrants
6
7
from .clients import Clients
7
8
from .connections import Connections
32
33
"Actions" ,
33
34
"AttackProtection" ,
34
35
"Blacklists" ,
36
+ "Branding" ,
35
37
"ClientGrants" ,
36
38
"Clients" ,
37
39
"Connections" ,
Original file line number Diff line number Diff line change 2
2
from .actions import Actions
3
3
from .attack_protection import AttackProtection
4
4
from .blacklists import Blacklists
5
+ from .branding import Branding
5
6
from .client_grants import ClientGrants
6
7
from .clients import Clients
7
8
from .connections import Connections
32
33
"actions" : Actions ,
33
34
"attack_protection" : AttackProtection ,
34
35
"blacklists" : Blacklists ,
36
+ "branding" : Branding ,
35
37
"client_grants" : ClientGrants ,
36
38
"clients" : Clients ,
37
39
"connections" : Connections ,
Original file line number Diff line number Diff line change @@ -17,6 +17,14 @@ management.blacklists module
17
17
:undoc-members:
18
18
:show-inheritance:
19
19
20
+ management.branding module
21
+ -------------------------------
22
+
23
+ .. automodule :: auth0.v3.management.branding
24
+ :members:
25
+ :undoc-members:
26
+ :show-inheritance:
27
+
20
28
management.client\_ grants module
21
29
-----------------------------------
22
30
You can’t perform that action at this time.
0 commit comments