Files
PolyMPR/routes/(apps)/mobility/(_props)/props.ts
T
djalim ed2fe69f54
Check Deno code / Check Deno code (pull_request) Successful in 7s
Tests / Unit tests (pull_request) Successful in 13s
Tests / Integration tests (pull_request) Successful in 1m47s
Build and push image / Check Deno code (push) Successful in 5s
Check Deno code / Check Deno code (push) Successful in 7s
Tests / Unit tests (push) Successful in 12s
Tests / Integration tests (push) Successful in 1m49s
Build and push image / Build Docker image (push) Successful in 3m13s
refactor(props): comment out my-mobility page until student page is fixed
2026-05-01 19:09:31 +02:00

18 lines
562 B
TypeScript

import { AppProperties } from "$root/defaults/interfaces.ts";
const properties: AppProperties = {
name: "PolyMobility",
icon: "flight_takeoff",
hint: "Suivi des mobilités internationales",
pages: {
index: "Accueil",
overview: "Suivi des mobilités",
// "my-mobility": "Ma mobilité", // TODO Fix ma mobilité page, so it renders correctly for students
},
adminOnly: ["overview"],
studentOnly: ["my-mobility"],
employeeOnly: true, // TODO Fix ma mobilité page, so it renders correctly for students
};
export default properties;