fix: api overrides all in config.routes
This commit is contained in:
parent
e685dadd55
commit
bd4558d1e4
|
@ -6,6 +6,14 @@
|
||||||
"routes": {
|
"routes": {
|
||||||
|
|
||||||
|
|
||||||
|
"/api/v/1.0/{uri}": {
|
||||||
|
"methods": ["GET", "POST", "PUT", "DELETE", "OPTIONS"],
|
||||||
|
"controller": "api:call",
|
||||||
|
"arguments": {
|
||||||
|
"uri": ".*"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"/js/_SERVER.js": {
|
"/js/_SERVER.js": {
|
||||||
"methods": ["GET"],
|
"methods": ["GET"],
|
||||||
"controller": "js:server",
|
"controller": "js:server",
|
||||||
|
@ -38,14 +46,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"/api/v/1.0/{uri}": {
|
|
||||||
"methods": ["GET", "POST", "PUT", "DELETE", "OPTIONS"],
|
|
||||||
"controller": "api:call",
|
|
||||||
"arguments": {
|
|
||||||
"uri": ".*"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
"/{any}": {
|
"/{any}": {
|
||||||
"methods": ["GET"],
|
"methods": ["GET"],
|
||||||
"controller": "redirect:home",
|
"controller": "redirect:home",
|
||||||
|
|
Loading…
Reference in New Issue