Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Updated MessageChannelSyncStatus enum: changed COMPLETED to ACTIVE #5965

Merged
merged 12 commits into from
Jul 25, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ export class UpdateMessageChannelSyncStatusEnumCommand extends CommandRunner {
},
{
id: v4(),
value: MessageChannelSyncStatus.COMPLETED,
label: 'Completed',
value: MessageChannelSyncStatus.ACTIVE,
label: 'Active',
position: 5,
color: 'green',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export enum MessageChannelSyncStatus {
// NEW STATUSES
NOT_SYNCED = 'NOT_SYNCED',
ONGOING = 'ONGOING',
COMPLETED = 'COMPLETED',
ACTIVE = 'ACTIVE', // Updated from COMPLETED to ACTIVE
FAILED_INSUFFICIENT_PERMISSIONS = 'FAILED_INSUFFICIENT_PERMISSIONS',
FAILED_UNKNOWN = 'FAILED_UNKNOWN',
}
Expand Down Expand Up @@ -204,8 +204,8 @@ export class MessageChannelWorkspaceEntity extends BaseWorkspaceEntity {
color: 'blue',
},
{
value: MessageChannelSyncStatus.COMPLETED,
label: 'Completed',
value: MessageChannelSyncStatus.ACTIVE,
label: 'Active',
position: 5,
color: 'green',
},
Expand Down
Loading