Compare commits

..

13 Commits

Author SHA1 Message Date
Philipinho a8cb00baa7 adjust email digest window 2026-03-31 15:58:54 +01:00
Philipinho 91e1b6c4a2 filter 2026-03-31 15:49:05 +01:00
Philipinho 1912ef5b1c feat: group notifications 2026-03-31 15:38:06 +01:00
Philipinho bd42dec6be fix keys 2026-03-31 01:23:14 +01:00
Philipinho d034fce11b fix 2026-03-31 00:35:33 +01:00
Philipinho 6fcdebc178 move backlinks queue-up to history processor 2026-03-30 23:54:52 +01:00
Philipinho 308ce923cc clean up 2026-03-30 20:51:15 +01:00
Philipinho cb177811c0 fix 2026-03-30 20:31:29 +01:00
Philipinho a6d2140197 clean up 2026-03-30 20:20:51 +01:00
Philipinho 0f22e44d29 Merge branch 'main' into watchers-notify 2026-03-30 18:07:01 +01:00
Philipinho 0698590c8a digests 2026-03-30 13:50:54 +01:00
Philipinho 7ad3af0d7e fix: email copy 2026-03-30 11:57:28 +01:00
Philipinho 6c60e28250 feat: watchers notification and email preferences 2026-03-30 11:54:28 +01:00
5 changed files with 3 additions and 15 deletions
+1 -1
View File
@@ -25,7 +25,7 @@
"@tabler/icons-react": "^3.40.0",
"@tanstack/react-query": "5.90.17",
"alfaaz": "^1.1.0",
"axios": "1.13.6",
"axios": "^1.13.6",
"blueimp-load-image": "^5.16.0",
"clsx": "^2.1.1",
"emoji-mart": "^5.6.0",
@@ -259,12 +259,6 @@ export class EnvironmentService {
);
}
getAiEmbeddingSupportsMrl(): boolean | undefined {
const val = this.configService.get<string>('AI_EMBEDDING_SUPPORTS_MRL');
if (val === undefined || val === null || val === '') return undefined;
return val === 'true';
}
getOpenAiApiKey(): string {
return this.configService.get<string>('OPENAI_API_KEY');
}
@@ -117,12 +117,6 @@ export class EnvironmentVariables {
@IsString()
AI_EMBEDDING_DIMENSION: string;
@IsOptional()
@ValidateIf((obj) => obj.AI_EMBEDDING_SUPPORTS_MRL)
@IsIn(['true', 'false'])
@IsString()
AI_EMBEDDING_SUPPORTS_MRL: string;
@ValidateIf((obj) => obj.AI_DRIVER)
@IsString()
@IsNotEmpty()
+1 -1
View File
@@ -286,7 +286,7 @@ importers:
specifier: ^1.1.0
version: 1.1.0
axios:
specifier: 1.13.6
specifier: ^1.13.6
version: 1.13.6
blueimp-load-image:
specifier: ^5.16.0