|
Last change
on this file since 4fe4582 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 | |
|---|
| 1 | import { NextResponse } from "next/server";
|
|---|
| 2 | import { getSubjects } from "@/lib/prof-demo-store";
|
|---|
| 3 |
|
|---|
| 4 | export async function GET() {
|
|---|
| 5 | return NextResponse.json(getSubjects());
|
|---|
| 6 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.