/* eslint-disable @typescript-eslint/no-unused-vars */ import { SaveOptions, RemoveOptions } from '@dbTools/typeorm' import { User as dbUser } from '@entity/User' import { User } from '@model/User' const communityDbUser: dbUser = { id: -1, email: 'support@gradido.net', firstName: 'Gradido', lastName: 'Akademie', pubKey: Buffer.from(''), privKey: Buffer.from(''), deletedAt: null, password: BigInt(0), emailHash: Buffer.from(''), createdAt: new Date(), emailChecked: false, language: '', isAdmin: null, publisherId: 0, passphrase: '', settings: [], hasId: function (): boolean { throw new Error('Function not implemented.') }, save: function (options?: SaveOptions): Promise { throw new Error('Function not implemented.') }, remove: function (options?: RemoveOptions): Promise { throw new Error('Function not implemented.') }, softRemove: function (options?: SaveOptions): Promise { throw new Error('Function not implemented.') }, recover: function (options?: SaveOptions): Promise { throw new Error('Function not implemented.') }, reload: function (): Promise { throw new Error('Function not implemented.') }, } const communityUser = new User(communityDbUser) export { communityDbUser, communityUser }