From 9d0503f96bc21aecea4606c12e6b338dd4a65a43 Mon Sep 17 00:00:00 2001 From: Thomas Fransolet Date: Sat, 1 May 2021 00:20:25 +0200 Subject: [PATCH] Fix return object create config --- ManagerService/Controllers/ConfigurationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ManagerService/Controllers/ConfigurationController.cs b/ManagerService/Controllers/ConfigurationController.cs index aa9cd25..8637426 100644 --- a/ManagerService/Controllers/ConfigurationController.cs +++ b/ManagerService/Controllers/ConfigurationController.cs @@ -82,7 +82,7 @@ namespace ManagerService.Controllers /// Create a new configuration /// /// New configuration info - [ProducesResponseType(typeof(RessourceDetailDTO), 200)] + [ProducesResponseType(typeof(ConfigurationDTO), 200)] [ProducesResponseType(typeof(string), 400)] [ProducesResponseType(typeof(string), 409)] [ProducesResponseType(typeof(string), 500)]