mirror of
https://github.com/fergalmoran/onearmy-community-platform.git
synced 2025-12-25 02:58:21 +00:00
11 lines
198 B
TypeScript
11 lines
198 B
TypeScript
export enum ResearchStatus {
|
|
IN_PROGRESS = 'In progress',
|
|
COMPLETED = 'Completed',
|
|
ARCHIVED = 'Archived',
|
|
}
|
|
|
|
export enum ResearchUpdateStatus {
|
|
DRAFT = 'draft',
|
|
PUBLISHED = 'published',
|
|
}
|