mirror of
https://github.com/IT4Change/gradido.git
synced 2026-04-06 01:25:28 +00:00
14 lines
364 B
TypeScript
14 lines
364 B
TypeScript
import { UserInterface } from './UserInterface'
|
|
import { RoleNames } from '../../enum'
|
|
|
|
export const peterLustig: UserInterface = {
|
|
email: 'peter@lustig.de',
|
|
firstName: 'Peter',
|
|
lastName: 'Lustig',
|
|
// description: 'Latzhose und Nickelbrille',
|
|
createdAt: new Date('2020-11-25T10:48:43'),
|
|
emailChecked: true,
|
|
language: 'de',
|
|
role: RoleNames.ADMIN,
|
|
}
|