|
|
@@ -0,0 +1,52 @@ |
|
|
|
{ |
|
|
|
"routes": [ |
|
|
|
{ |
|
|
|
"method": "GET", |
|
|
|
"path": "/transaction-suzukis", |
|
|
|
"handler": "transaction-suzuki.find", |
|
|
|
"config": { |
|
|
|
"policies": [] |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
"method": "GET", |
|
|
|
"path": "/transaction-suzukis/count", |
|
|
|
"handler": "transaction-suzuki.count", |
|
|
|
"config": { |
|
|
|
"policies": [] |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
"method": "GET", |
|
|
|
"path": "/transaction-suzukis/:id", |
|
|
|
"handler": "transaction-suzuki.findOne", |
|
|
|
"config": { |
|
|
|
"policies": [] |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
"method": "POST", |
|
|
|
"path": "/transaction-suzukis", |
|
|
|
"handler": "transaction-suzuki.create", |
|
|
|
"config": { |
|
|
|
"policies": [] |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
"method": "PUT", |
|
|
|
"path": "/transaction-suzukis/:id", |
|
|
|
"handler": "transaction-suzuki.update", |
|
|
|
"config": { |
|
|
|
"policies": [] |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
"method": "DELETE", |
|
|
|
"path": "/transaction-suzukis/:id", |
|
|
|
"handler": "transaction-suzuki.delete", |
|
|
|
"config": { |
|
|
|
"policies": [] |
|
|
|
} |
|
|
|
} |
|
|
|
] |
|
|
|
} |