New goals page. Upgraded prisma.

This commit is contained in:
Mike Cao 2025-05-31 02:11:18 -07:00
parent 99330a1a4d
commit 49bcbfd7f9
65 changed files with 769 additions and 1195 deletions

View file

@ -1,5 +1,5 @@
import bcrypt from 'bcryptjs';
import { Report } from '@prisma/client';
import { Report } from '@/generated/prisma';
import redis from '@/lib/redis';
import debug from 'debug';
import { PERMISSIONS, ROLE_PERMISSIONS, ROLES, SHARE_TOKEN_HEADER } from '@/lib/constants';

View file

@ -1,4 +1,4 @@
import { Website, Session } from '@prisma/client';
import { Website, Session } from '@/generated/prisma';
import redis from '@/lib/redis';
import { getWebsiteSession, getWebsite } from '@/queries';