diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-05 16:30:31 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-05 16:30:44 +0000 |
| commit | 56c5236245359987e7a729979de3892bbee70852 (patch) | |
| tree | d5acb844b606502263414eff030c3c5708f6e98b /packages/trpc/index.ts | |
| parent | 9490a3a616f526ee7b495abab27af111df16bbb4 (diff) | |
| download | karakeep-56c5236245359987e7a729979de3892bbee70852.tar.zst | |
extension: Show who the logged in user is in the extension options
Diffstat (limited to 'packages/trpc/index.ts')
| -rw-r--r-- | packages/trpc/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/trpc/index.ts b/packages/trpc/index.ts index a32eb871..6ca0bbf7 100644 --- a/packages/trpc/index.ts +++ b/packages/trpc/index.ts @@ -5,6 +5,8 @@ import superjson from "superjson"; type User = { id: string; + name: string; + email: string; role: "admin" | "user" | null; }; |
