aboutsummaryrefslogtreecommitdiff
path: root/api/umosapi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'api/umosapi.cpp')
-rw-r--r--api/umosapi.cpp4
1 files changed, 4 insertions, 0 deletions
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();