mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
import type { Id } from "./_generated/dataModel"
|
|
import { query } from "./_generated/server"
|
|
|
|
export const getCurrentUser = query({
|
|
handler: async (ctx) => {
|
|
return await ctx.db.get(
|
|
"jd7ampv4m200xr4yk2cfncccmh7qhj34" as Id<"users">,
|
|
)
|
|
},
|
|
})
|