mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
refactor user preferences and create user auth entity
This commit is contained in:
parent
9e5118d1dc
commit
1797abb2da
5 changed files with 39 additions and 16 deletions
|
@ -7,6 +7,7 @@ import {
|
|||
Repack,
|
||||
UserPreferences,
|
||||
} from "@main/entity";
|
||||
import { UserAuth } from "./entity/user-auth";
|
||||
|
||||
export const gameRepository = dataSource.getRepository(Game);
|
||||
|
||||
|
@ -21,3 +22,5 @@ export const downloadSourceRepository =
|
|||
dataSource.getRepository(DownloadSource);
|
||||
|
||||
export const downloadQueueRepository = dataSource.getRepository(DownloadQueue);
|
||||
|
||||
export const userAuthRepository = dataSource.getRepository(UserAuth);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue