Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Bugfix 414 missing import #442

Merged
merged 5 commits into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,7 @@ Management Endpoints
- Actions() (``Auth0().actions``)
- AttackProtection() (``Auth0().attack_protection``)
- Blacklists() ( ``Auth0().blacklists`` )
- Branding() ( ``Auth0().branding`` )
- ClientGrants() ( ``Auth0().client_grants`` )
- Clients() ( ``Auth0().clients`` )
- Connections() ( ``Auth0().connections`` )
Expand Down
2 changes: 2 additions & 0 deletions auth0/v3/management/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from .attack_protection import AttackProtection
from .auth0 import Auth0
from .blacklists import Blacklists
from .branding import Branding
from .client_grants import ClientGrants
from .clients import Clients
from .connections import Connections
Expand Down Expand Up @@ -32,6 +33,7 @@
"Actions",
"AttackProtection",
"Blacklists",
"Branding",
"ClientGrants",
"Clients",
"Connections",
Expand Down
2 changes: 2 additions & 0 deletions auth0/v3/management/auth0.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from .actions import Actions
from .attack_protection import AttackProtection
from .blacklists import Blacklists
from .branding import Branding
from .client_grants import ClientGrants
from .clients import Clients
from .connections import Connections
Expand Down Expand Up @@ -32,6 +33,7 @@
"actions": Actions,
"attack_protection": AttackProtection,
"blacklists": Blacklists,
"branding": Branding,
"client_grants": ClientGrants,
"clients": Clients,
"connections": Connections,
Expand Down
8 changes: 8 additions & 0 deletions docs/source/v3.management.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ management.blacklists module
:undoc-members:
:show-inheritance:

management.branding module
-------------------------------

.. automodule:: auth0.v3.management.branding
:members:
:undoc-members:
:show-inheritance:

management.client\_grants module
-----------------------------------

Expand Down