Redirect /teacher/exams/grading* to /teacher/homework/submissions; remove exam grading UI/actions/data-access; add homework student workflow and update design docs.
7 lines
218 B
TypeScript
7 lines
218 B
TypeScript
import { redirect } from "next/navigation"
|
|
|
|
export default async function SubmissionGradingPage({ params }: { params: Promise<{ submissionId: string }> }) {
|
|
await params
|
|
redirect("/teacher/homework/submissions")
|
|
}
|