ccf4d1eeec
Implement date formatting per workspace member settings We'll need another round to maybe initialize all workspaces on the default settings. For now the default behavior is to take system settings if nothing is found in DB. --------- Co-authored-by: Weiko <corentin@twenty.com>
7 lines
149 B
TypeScript
7 lines
149 B
TypeScript
export enum DateFormat {
|
|
SYSTEM = 'SYSTEM',
|
|
MONTH_FIRST = 'MMM d, yyyy', // US
|
|
DAY_FIRST = 'd MMM, yyyy', // UK
|
|
YEAR_FIRST = 'yyyy MMM d',
|
|
}
|