mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Setup LoginUserBackupRepository.
This commit is contained in:
parent
d286d68730
commit
5220874a07
@ -0,0 +1,5 @@
|
|||||||
|
import { EntityRepository, Repository } from 'typeorm'
|
||||||
|
import { LoginUser } from '@entity/LoginUser'
|
||||||
|
|
||||||
|
@EntityRepository(LoginUser)
|
||||||
|
export class LoginUserRepository extends Repository<LoginUser> {}
|
||||||
5
backend/src/typeorm/repository/LoginUserBackup.ts
Normal file
5
backend/src/typeorm/repository/LoginUserBackup.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { EntityRepository, Repository } from 'typeorm'
|
||||||
|
import { LoginUserBackup } from '@entity/LoginUserBackup'
|
||||||
|
|
||||||
|
@EntityRepository(LoginUserBackup)
|
||||||
|
export class LoginUserBackupRepository extends Repository<LoginUserBackup> {}
|
||||||
Loading…
x
Reference in New Issue
Block a user