mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
import { ContributionStatus } from 'database'
|
|
import { registerEnumType } from 'type-graphql'
|
|
|
|
export { ContributionStatus }
|
|
|
|
registerEnumType(ContributionStatus, {
|
|
name: 'ContributionStatus',
|
|
description: 'Name of the Type of the Contribution Status',
|
|
})
|