refactor user preferences and create user auth entity

This commit is contained in:
Zamitto 2024-06-13 23:31:32 -03:00
parent 9e5118d1dc
commit 1797abb2da
5 changed files with 39 additions and 16 deletions

View file

@ -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);