source: src/app/api/prof/students/route.ts@ 50f2fb4

Last change on this file since 50f2fb4 was 298f9b3, checked in by Stefan-Saveski <stefansaveski19@…>, 8 months ago

feat: Implement professor portal with student management, grade handling, and profile display

  • Property mode set to 100644
File size: 173 bytes
Line 
1import { NextResponse } from "next/server";
2import { getSubjects } from "@/lib/prof-demo-store";
3
4export async function GET() {
5 return NextResponse.json(getSubjects());
6}
Note: See TracBrowser for help on using the repository browser.