Fixed partial handling and added cookies

This commit is contained in:
Kevin FEDYNA
2025-01-21 16:09:36 +01:00
parent b364f6cbab
commit fa66621abc
12 changed files with 158 additions and 48 deletions
+14
View File
@@ -0,0 +1,14 @@
import { AppProperties } from "$root/defaults/interfaces.ts";
const properties: AppProperties = {
name: "Students",
icon: "badge",
pages: {
index: "Homepage",
upload: "Upload students",
},
adminOnly: ["upload"],
hint: "See student information",
};
export default properties;