From 4a1a02b55e6d1b55e44560c728a47875411da333 Mon Sep 17 00:00:00 2001 From: neodarz Date: Wed, 11 Sep 2019 16:31:02 +0200 Subject: Add 200 responses to some endpoints --- api/umosapi.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/umosapi.cpp b/api/umosapi.cpp index bd58f8a..989dbe2 100644 --- a/api/umosapi.cpp +++ b/api/umosapi.cpp @@ -275,11 +275,13 @@ void UmosapiService::Api::createResource() { UmosapiService::Api::set_method_handler("GET", retrieveAll); UmosapiService::Api::produce("application/json"); UmosapiService::Api::parameter("mcollection", "Name of the collection where the uobject are located"); + UmosapiService::Api::response("200", "All is fine", "UObject", "array"); UmosapiService::Api::set_error_handler(&resource_error_handler); UmosapiService::Api::set_method_handler("POST", addUObject); UmosapiService::Api::consume("application/json"); UmosapiService::Api::parameter("mcollection", "Name of the collection where the uobject are located"); UmosapiService::Api::parameter("body", "UObject to add", "UObjectSended"); + UmosapiService::Api::response("200", "All is fine", "UObject"); UmosapiService::Api::set_error_handler(&resource_error_handler); UmosapiService::Api::publish(); @@ -288,6 +290,7 @@ void UmosapiService::Api::createResource() { UmosapiService::Api::produce("application/json"); UmosapiService::Api::parameter("mcollection", "Name of the collection where the uobject are located" ); UmosapiService::Api::parameter("oid", "MongoDB oid of the uobject"); + UmosapiService::Api::response("200", "All is fine", "UObject"); UmosapiService::Api::set_error_handler(&resource_error_handler); UmosapiService::Api::publish(); @@ -297,6 +300,7 @@ void UmosapiService::Api::createResource() { UmosapiService::Api::parameter("mcollection", "Name of the collection where the uobject are located"); UmosapiService::Api::parameter("key", "Key of uobject to search, ex: kill or total.kill"); UmosapiService::Api::parameter("value", "Value of uobject to search, ex: 42"); + UmosapiService::Api::response("200", "All is fine", "UObject"); UmosapiService::Api::set_error_handler(&resource_error_handler); UmosapiService::Api::publish(); -- cgit v1.2.1