-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroutes.ini
More file actions
22 lines (19 loc) · 806 Bytes
/
routes.ini
File metadata and controls
22 lines (19 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[routes]
landmarks.route = "landmarks/:action"
landmarks.defaults.module = landmarks
landmarks.defaults.controller = landmarks
landmarks.defaults.action = "browse"
landmarkAction.route = "landmarks/:action/:id"
landmarkAction.defaults.module = landmarks
landmarkAction.defaults.controller = landmarks
landmarkAction.defaults.action = "show"
landmarkAction.reqs.id = "\d+"
landmarkItemAction.route = "landmarks/edit/:id/:action/:item"
landmarkItemAction.defaults.module = landmarks
landmarkItemAction.defaults.controller = landmarks
landmarkItemAction.reqs.id = "\d+"
landmarkItemAction.reqs.item = "\d+"
oldLandmark.route = "landmarks/landmarks/:action/:id"
oldLandmark.defaults.module = landmarks
oldLandmark.defaults.controller = landmarks
oldLandmark.defaults.action = "browse"