Koha/api/v1/swagger/paths/rotas.json
Tomas Cohen Arazi a9248f237d Bug 11897: Use 'stockrotation' permission for the endpoint
This patch makes the tests for 'authorized' session use the
'stockrotation' permission instead of 'superlibrarian'.

The path x-koha-permission is fixed accordingly.

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
2018-10-09 15:46:06 +00:00

79 lines
2.5 KiB
JSON

{
"/rotas/{rota_id}/stages/{stage_id}/position": {
"put": {
"x-mojo-to": "Stage#move",
"operationId": "moveStage",
"tags": ["rotas"],
"parameters": [{
"name": "rota_id",
"in": "path",
"required": true,
"description": "A rotas ID",
"type": "integer"
}, {
"name": "stage_id",
"in": "path",
"required": true,
"description": "A stages ID",
"type": "integer"
}, {
"name": "position",
"in": "body",
"required": true,
"description": "A stages position in the rota",
"schema": {
"type": "integer"
}
}],
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "OK"
},
"400": {
"description": "Bad request",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"401": {
"description": "Authentication required",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"403": {
"description": "Access forbidden",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"404": {
"description": "Position not found",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"500": {
"description": "Internal server error",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"503": {
"description": "Under maintenance",
"schema": {
"$ref": "../definitions.json#/error"
}
}
},
"x-koha-authorization": {
"permissions": {
"stockrotation": "1"
}
}
}
}
}