feat: add DomainLifecycleSteps

This commit is contained in:
Maël Gangloff
2024-08-23 21:19:34 +02:00
parent eeb2477611
commit 6ed2983665
16 changed files with 604 additions and 521 deletions

View File

@@ -1,6 +1,6 @@
export const rolesToColor = (roles: string[]) => roles.includes('registrant') ? 'green' :
roles.includes('administrative') ? 'blue' :
roles.includes('technical') ? 'orange' :
roles.includes('technical') ? 'orange' :
roles.includes('administrative') ? 'blue' :
roles.includes('registrar') ? 'purple' :
roles.includes('sponsor') ? 'magenta' :
roles.includes('billing') ? 'cyan' : 'default'