Files
Open-Assistant/website/src/middleware.ts
T

9 lines
193 B
TypeScript

export { default } from "next-auth/middleware";
/**
* Guards all pages under `/grading` and redirects them to the sign in page.
*/
export const config = {
matcher: ["/grading/:path*"],
};