mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-21 06:34:30 +01:00
per-user coins data for admin (#82)
* admin user can see per-user coins data * fixes * fix
This commit is contained in:
@@ -2,13 +2,13 @@ import { z } from "zod"
|
||||
|
||||
const zodEnv = z.object({
|
||||
AUTH_SECRET: z.string(),
|
||||
NEXT_PUBLIC_DEMO: z.string().optional(),
|
||||
DEMO: z.string().optional(),
|
||||
})
|
||||
|
||||
declare global {
|
||||
interface ProcessEnv extends z.TypeOf<typeof zodEnv> {
|
||||
AUTH_SECRET: string;
|
||||
NEXT_PUBLIC_DEMO?: string;
|
||||
DEMO?: string;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user