Skip to content

Commit 70c8d97

Browse files
committed
Update useIdentityStates.ts
1 parent dd13760 commit 70c8d97

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/composables/useIdentityStates.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export enum IdentityState {
1313
TO_CREATE = -1,
1414
TO_COMPLETE = -2,
1515
ON_ERROR = -3,
16+
NO_SYNC = -99
1617
}
1718

1819
export const IdentityStateList = [
@@ -24,6 +25,7 @@ export const IdentityStateList = [
2425
{ value: IdentityState.TO_COMPLETE, text: 'A compléter', color: 'warning', icon: 'mdi-circle', display: true },
2526
{ value: IdentityState.ON_ERROR, text: 'En erreur', color: 'negative', icon: 'mdi-circle', display: true },
2627
{ value: IdentityState.PROCESSING, text: 'En cours de synchronisation', color: 'warning', icon: 'mdi-loading', display: true },
28+
{ value: IdentityState.NO_SYNC, text: 'A ne pas synchroniser', color: 'black', icon: 'mdi-publish-off', display: true },
2729
];
2830

2931
export function useIdentityStates(): useIdentityStateReturnType {

0 commit comments

Comments
 (0)