Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Commit 11f0103

Browse files
committed
fix on signup task
1 parent 4d1c9f0 commit 11f0103

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tasks/loader/types/automated/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@
66

77
from ..base import Event
88
from ..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
1414
from .unused_actions import Communication as _CommunicationAction
1515
from .unused_actions import Integrations as _IntegrationsAction
1616
from .unused_actions import Workshops as _WorkshopsAction
1717

1818

1919
class Service(Enum):
20+
Authentication = "authentication"
2021
Communication = "communication"
2122
Integrations = "integrations"
2223
Registration = "registration"
23-
Sync = "sync"
2424
Workshops = "workshops"
2525

2626

tasks/loader/types/automated/sync.py renamed to tasks/loader/types/automated/authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
from .base_action import BaseAction
44

55

6-
class Sync(BaseAction):
6+
class Authentication(BaseAction):
77
SignUp = auto()

0 commit comments

Comments
 (0)