mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
15 lines
360 B
TypeScript
15 lines
360 B
TypeScript
import { registerEnumType } from 'type-graphql'
|
|
|
|
export enum PendingTransactionState {
|
|
NEW = 1,
|
|
WAIT_ON_PENDING = 2,
|
|
PENDING = 3,
|
|
WAIT_ON_CONFIRM = 4,
|
|
CONFIRMED = 5,
|
|
}
|
|
|
|
registerEnumType(PendingTransactionState, {
|
|
name: 'PendingTransactionState', // this one is mandatory
|
|
description: 'State of the PendingTransaction', // this one is optional
|
|
})
|