Add id in parameters for GET /event/{id}

This commit is contained in:
JonathanMM 2017-05-01 14:12:29 +02:00
parent 0a275d9f28
commit 0b11aa6d2d

View file

@ -145,7 +145,15 @@
"produces": [
"application/json"
],
"parameters": [],
"parameters": [
{
"name": "id",
"in": "path",
"description": "Id of event",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Success",