-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implement Feature/bookmarks #178 (#278) * Feature/bookmarks (#279) * implement bookmarks * impl bookmarks not yet done * further implementation of bookmarks * implement migrations for bookmarks * lint * fix plural * fix logs * fix bookmarked_users not being loaded without filter * format * query result caching * fix idempotency * add db indexes * fix utc dates * fix pnpm * load user relations to add bookmark * super efficient relationship loader * faster and more architecturally clean dupe detection * inverse dupe detection * performance test * remove deprecated apis * disable query result cache * Revert "disable query result cache" This reverts commit 4aed05a. * Revert "performance test" This reverts commit 014d256. * refactor rawg recache * refactor logging pt. 1 * refactor logging pt. 2 * refactor logging pt. 3 * No Stack needed if contained in err-obj * update dependencies * linting * disable numseperator * fix deleted games bookmark bug * clean imports * fix bookmarking bug * implement stream-slicing using range-header on downloads * accept ranges header * syntax check * fix stream slicer * increment version * fix range content length * refactor * refactor * document header * fix range header * fix start end logic * fix logic again * fix this damn logic PLEASE * log header * add texts * update deps * fix linter * fix config parser #286 * support tls Add encryption support for PostgreSQL Client #285 * fix namings * support for tls db conns * support for rawg-to-steam-redirect * dont skip cache check without api-key when using rawg2steam * fix logger * Release 12.1.0
- Loading branch information
Showing
107 changed files
with
2,285 additions
and
517 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
{ | ||
"singleQuote": false, | ||
"endOfLine": "auto", | ||
"plugins": ["prettier-plugin-jsdoc"] | ||
"endOfLine": "auto" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import { SetMetadata } from "@nestjs/common"; | ||
|
||
export const DISABLE_API_IF_KEY = "disableApiIf"; | ||
export const DisableApiIf = (disabled: boolean) => | ||
SetMetadata(DISABLE_API_IF_KEY, disabled); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
import { SetMetadata } from "@nestjs/common"; | ||
|
||
export const Public = () => SetMetadata("public", true); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.