Files
PolyMPR/routes/(apps)/notes/(_props)/props.ts
T
djalim df3957741d
Check Deno code / Check Deno code (pull_request) Failing after 8s
Tests / Unit tests (pull_request) Successful in 13s
Tests / Integration tests (pull_request) Failing after 1m0s
feat : fix a lot of stuff
2026-04-30 13:49:47 +02:00

18 lines
385 B
TypeScript

import { AppProperties } from "$root/defaults/interfaces.ts";
const properties: AppProperties = {
name: "PolyNotes",
icon: "school",
pages: {
index: "Accueil",
notes: "Mes notes",
courses: "Consulter",
import: "Import Notes",
},
adminOnly: ["courses", "import"],
studentOnly: ["notes"],
hint: "Student grading management",
};
export default properties;