Skip to content

Commit

Permalink
Merge pull request #12 from B3-3iL-DLW/feat/user-dashboard
Browse files Browse the repository at this point in the history
Feat/user dashboard
  • Loading branch information
julesartd authored May 17, 2024
2 parents b736a00 + 3908566 commit 9b978a5
Show file tree
Hide file tree
Showing 14 changed files with 3,443 additions and 350 deletions.
4 changes: 3 additions & 1 deletion backend-nest/prisma/seed.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PrismaClient, user_role } from '@prisma/client';
import {PrismaClient, user_role} from '@prisma/client';

const prisma = new PrismaClient();

Expand All @@ -12,6 +12,7 @@ async function main() {
firstname: 'Alice',
lastname: 'Doe',
role: user_role.STUDENT,
classGroupId: 1,
},
});

Expand All @@ -24,6 +25,7 @@ async function main() {
firstname: 'Bob',
lastname: 'Smith',
role: user_role.ADMIN,
classGroupId: 1,
},
});

Expand Down
Loading

0 comments on commit 9b978a5

Please sign in to comment.