Add LabelPrompterReplyTask

This commit is contained in:
AbdBarho
2023-01-08 10:52:57 +01:00
parent a19e0fa085
commit f7dceee87a
6 changed files with 85 additions and 8 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
export { default } from "next-auth/middleware";
/**
* Guards all pages under `/grading` and redirects them to the sign in page.
* Guards these pages and redirects them to the sign in page.
*/
export const config = {
matcher: ["/create/:path*", "/evaluate/:path*", "/account/:path*", "/dashboard"],
matcher: ["/create/:path*", "/evaluate/:path*", "/label/:path*", "/account/:path*", "/dashboard", "/admin/:path*"],
};