mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
15 lines
344 B
TypeScript
15 lines
344 B
TypeScript
import { registerEnumType } from 'type-graphql'
|
|
|
|
export enum ContributionStatus {
|
|
PENDING = 'PENDING',
|
|
DELETED = 'DELETED',
|
|
IN_PROGRESS = 'IN_PROGRESS',
|
|
DENIED = 'DENIED',
|
|
CONFIRMED = 'CONFIRMED',
|
|
}
|
|
|
|
registerEnumType(ContributionStatus, {
|
|
name: 'ContributionStatus',
|
|
description: 'Name of the Type of the Contribution Status',
|
|
})
|