diff options
| author | Mohamed Bassem <me@mbassem.com> | 2026-02-01 11:01:54 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2026-02-01 11:01:54 +0000 |
| commit | cc638c2a996a5487b101b1306c524eaaf8802604 (patch) | |
| tree | 1413b7cf0098bdfcdc7a7116631fbdc6116e49de /packages/trpc/routers/_app.ts | |
| parent | 453331c629cfb22aed42876a88eb0d2ce16c8f44 (diff) | |
| download | karakeep-cc638c2a996a5487b101b1306c524eaaf8802604.tar.zst | |
chore: add an endpoint for propagating client configs to the mobile app
Diffstat (limited to 'packages/trpc/routers/_app.ts')
| -rw-r--r-- | packages/trpc/routers/_app.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/trpc/routers/_app.ts b/packages/trpc/routers/_app.ts index bae69130..9e20bb7e 100644 --- a/packages/trpc/routers/_app.ts +++ b/packages/trpc/routers/_app.ts @@ -4,6 +4,7 @@ import { apiKeysAppRouter } from "./apiKeys"; import { assetsAppRouter } from "./assets"; import { backupsAppRouter } from "./backups"; import { bookmarksAppRouter } from "./bookmarks"; +import { configAppRouter } from "./config"; import { feedsAppRouter } from "./feeds"; import { highlightsAppRouter } from "./highlights"; import { importSessionsRouter } from "./importSessions"; @@ -35,6 +36,7 @@ export const appRouter = router({ invites: invitesAppRouter, publicBookmarks: publicBookmarks, subscriptions: subscriptionsRouter, + config: configAppRouter, }); // export type definition of API export type AppRouter = typeof appRouter; |
