univ-pau-ics/config/routes.json

34 lines
412 B
JSON

{
"methods": [ "GET" ],
"routes": {
"/": {
"methods": ["GET"],
"controller": "page:home",
"arguments": {}
},
"/ics/{diplome_id}{x}": {
"methods": ["GET"],
"controller": "ics:download",
"arguments": {
"diplome_id": "T\\d+",
"x": "\\.ics"
}
},
"/{any}": {
"methods": ["GET"],
"controller": "redirect:homepage",
"arguments": {
"any": ".+"
}
}
}
}