Initial dashboard work (auth flow)
This commit is contained in:
parent
d54897acdd
commit
5a91d36953
18 changed files with 3808 additions and 31 deletions
12
src/data/DashboardUsers.ts
Normal file
12
src/data/DashboardUsers.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { getRepository, Repository } from "typeorm";
|
||||
import { DashboardUser } from "./entities/DashboardUser";
|
||||
import { BaseRepository } from "./BaseRepository";
|
||||
|
||||
export class DashboardUsers extends BaseRepository {
|
||||
private dashboardUsers: Repository<DashboardUser>;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.dashboardUsers = getRepository(DashboardUser);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue