aboutsummaryrefslogtreecommitdiffstats
path: root/packages/trpc
diff options
context:
space:
mode:
Diffstat (limited to 'packages/trpc')
-rw-r--r--packages/trpc/models/users.ts6
-rw-r--r--packages/trpc/routers/users.test.ts6
2 files changed, 12 insertions, 0 deletions
diff --git a/packages/trpc/models/users.ts b/packages/trpc/models/users.ts
index 0653349b..d8a84ffa 100644
--- a/packages/trpc/models/users.ts
+++ b/packages/trpc/models/users.ts
@@ -439,6 +439,8 @@ export class User {
readerFontFamily: true,
autoTaggingEnabled: true,
autoSummarizationEnabled: true,
+ tagStyle: true,
+ inferredTagLang: true,
},
});
@@ -461,6 +463,8 @@ export class User {
readerFontFamily: settings.readerFontFamily,
autoTaggingEnabled: settings.autoTaggingEnabled,
autoSummarizationEnabled: settings.autoSummarizationEnabled,
+ tagStyle: settings.tagStyle ?? "as-generated",
+ inferredTagLang: settings.inferredTagLang,
};
}
@@ -488,6 +492,8 @@ export class User {
readerFontFamily: input.readerFontFamily,
autoTaggingEnabled: input.autoTaggingEnabled,
autoSummarizationEnabled: input.autoSummarizationEnabled,
+ tagStyle: input.tagStyle,
+ inferredTagLang: input.inferredTagLang,
})
.where(eq(users.id, this.user.id));
}
diff --git a/packages/trpc/routers/users.test.ts b/packages/trpc/routers/users.test.ts
index 21f05f5b..38ce2353 100644
--- a/packages/trpc/routers/users.test.ts
+++ b/packages/trpc/routers/users.test.ts
@@ -167,6 +167,8 @@ describe("User Routes", () => {
// AI Settings
autoSummarizationEnabled: null,
autoTaggingEnabled: null,
+ inferredTagLang: null,
+ tagStyle: "lowercase-hyphens",
});
// Update settings
@@ -184,6 +186,8 @@ describe("User Routes", () => {
// AI Settings
autoSummarizationEnabled: true,
autoTaggingEnabled: true,
+ inferredTagLang: "en",
+ tagStyle: "lowercase-underscores",
});
// Verify updated settings
@@ -204,6 +208,8 @@ describe("User Routes", () => {
// AI Settings
autoSummarizationEnabled: true,
autoTaggingEnabled: true,
+ inferredTagLang: "en",
+ tagStyle: "lowercase-underscores",
});
// Test invalid update (e.g., empty input, if schema enforces it)