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
18 lines
562 B
TypeScript
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;
|