adding https security group

This commit is contained in:
2020-04-26 03:37:40 +01:00
parent da36d4eb6f
commit de21835b27
6 changed files with 148 additions and 0 deletions

View File

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