Feat: removed SCHEDULED choice due to redundency with sync interval

This commit is contained in:
ifoughali 2025-11-20 11:26:43 +01:00
parent e11508dd6c
commit 71f707b7ac

View File

@ -13,7 +13,6 @@ class DataSourceStatusChoices(ChoiceSet):
SYNCING = 'syncing'
COMPLETED = 'completed'
FAILED = 'failed'
SCHEDULED = 'scheduled'
READY = 'ready'
CHOICES = (
@ -22,7 +21,6 @@ class DataSourceStatusChoices(ChoiceSet):
(SYNCING, _('Syncing'), 'cyan'),
(COMPLETED, _('Completed'), 'green'),
(FAILED, _('Failed'), 'red'),
(SCHEDULED, _('Scheduled'), 'gray'),
(READY, _('Ready'), 'green'),
)