Files
Open-Assistant/website/src/middleware.ts
T
2022-12-28 13:01:02 -06:00

9 lines
231 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: ["/create/:path*", "/evaluate/:path*", "/account/:path*"],
};