mirror of
https://github.com/fergalmoran/onearmy-community-platform.git
synced 2025-12-22 09:37:54 +00:00
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
export enum IModerationStatus {
|
|
DRAFT = 'draft',
|
|
AWAITING_MODERATION = 'awaiting-moderation',
|
|
IMPROVEMENTS_NEEDED = 'improvements-needed',
|
|
REJECTED = 'rejected',
|
|
ACCEPTED = 'accepted',
|
|
}
|