mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import { registerEnumType } from 'type-graphql'
|
|
import { RoleNames } from 'database'
|
|
|
|
export { RoleNames }
|
|
|
|
registerEnumType(RoleNames, {
|
|
name: 'RoleNames', // this one is mandatory
|
|
description: 'Possible role names', // this one is optional
|
|
})
|