Redirect /teacher/exams/grading* to /teacher/homework/submissions; remove exam grading UI/actions/data-access; add homework student workflow and update design docs.
6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
import { redirect } from "next/navigation"
|
|
|
|
export default async function ExamGradingPage() {
|
|
redirect("/teacher/homework/submissions")
|
|
}
|