-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.json
15 lines (15 loc) · 1.08 KB
/
routes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"/api/v1/*": "/$1",
"/shows/:showid/schedules": "/schedules?show=:showid",
"/shows/:showid/schedules/:scheduleid": "/schedules?show=:showid&id=:scheduleid",
"/shows/:showid/schedules/:scheduleid/timeslots": "/timeslots?show=:showid&schedule=:scheduleid",
"/shows/:showid/schedules/:scheduleid/timeslots/:timeslotid": "/timeslots?show=:showid&schedule=:scheduleid&id=:timeslotid",
"/shows/:showid/schedules/:scheduleid/timeslots/:timeslotid/notes": "/notes?show=:showid×lot=:timeslotid",
"/shows/:showid/schedules/:scheduleid/timeslots/:timeslotid/notes/:noteid": "/notes?show=:showid×lot=:timeslotid&id=:noteid",
"/shows/:showid/timeslots": "/timeslots?show=:showid",
"/shows/:showid/timeslots/:timeslotid": "/timeslots?show=:showid&id=:timeslotid",
"/shows/:showid/timeslots/:timeslotid/notes": "/notes?show=:showid×lot=:timeslotid",
"/shows/:showid/timeslots/:timeslotid/notes/:noteid": "/notes?show=:showid×lot=:timeslotid&id=:noteid",
"/shows/:showid/notes": "/notes?show=:showid",
"/shows/:showid/notes/:noteid": "/notes?show=:showid&id=:noteid"
}