Skip to content

Commit fb80d58

Browse files
jrzerrlbalmaceda
authored andcommitted
Add actions to Auth0 class
1 parent 9744953 commit fb80d58

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

auth0/v3/management/auth0.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from .actions import Actions
12
from .blacklists import Blacklists
23
from .client_grants import ClientGrants
34
from .clients import Clients
@@ -41,6 +42,7 @@ class Auth0(object):
4142
"""
4243

4344
def __init__(self, domain, token, rest_options=None):
45+
self.actions = Actions(domain=domain, token=token, rest_options=rest_options)
4446
self.blacklists = Blacklists(domain=domain, token=token, rest_options=rest_options)
4547
self.client_grants = ClientGrants(domain=domain, token=token, rest_options=rest_options)
4648
self.clients = Clients(domain=domain, token=token, rest_options=rest_options)

0 commit comments

Comments
 (0)