diff options
| author | kamtschatka <simon.schatka@gmx.at> | 2024-10-19 22:24:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-19 21:24:26 +0100 |
| commit | 0debc6b415baa466245901fb52c009d09ef3ba15 (patch) | |
| tree | 8590ad3849dd2652dd567308f9cc9ace125c691d /packages/trpc/index.ts | |
| parent | e55362ec57f2a20ed096f971e769269b6f8211c8 (diff) | |
| download | karakeep-0debc6b415baa466245901fb52c009d09ef3ba15.tar.zst | |
feature: Log authentication failures to support fail2ban. Fixes #477 (#569)
* How do I set the variable "user" or "system" for AI inference #262
changed from system to user
* [Feature Request] Log failed login attempts for fail2ban implementation
#477
added logging of failed logins
* [Feature Request] Log failed login attempts for fail2ban implementation #477
added more logging for extension related logins
* Propagte IP to trpc
---------
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'packages/trpc/index.ts')
| -rw-r--r-- | packages/trpc/index.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/trpc/index.ts b/packages/trpc/index.ts index 5f351a8e..26d8ea96 100644 --- a/packages/trpc/index.ts +++ b/packages/trpc/index.ts @@ -15,11 +15,17 @@ interface User { export interface Context { user: User | null; db: typeof db; + req: { + ip: string | null; + }; } export interface AuthedContext { user: User; db: typeof db; + req: { + ip: string | null; + }; } // Avoid exporting the entire t-object |
