This repository was archived by the owner on Feb 28, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
tasks/loader/types/automated Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 66
77from ..base import Event
88from ..errors import LoaderException
9- from .base_action import BaseAction
10- from .registration import Registration as _RegistrationAction
11- from .sync import Sync as _SyncAction
129
1310# Register the actions with the base class
11+ from .authentication import Authentication as _AuthenticationAction
12+ from .base_action import BaseAction
13+ from .registration import Registration as _RegistrationAction
1414from .unused_actions import Communication as _CommunicationAction
1515from .unused_actions import Integrations as _IntegrationsAction
1616from .unused_actions import Workshops as _WorkshopsAction
1717
1818
1919class Service (Enum ):
20+ Authentication = "authentication"
2021 Communication = "communication"
2122 Integrations = "integrations"
2223 Registration = "registration"
23- Sync = "sync"
2424 Workshops = "workshops"
2525
2626
Original file line number Diff line number Diff line change 33from .base_action import BaseAction
44
55
6- class Sync (BaseAction ):
6+ class Authentication (BaseAction ):
77 SignUp = auto ()
You can’t perform that action at this time.
0 commit comments