diff --git a/ManagerService/Controllers/ConfigurationController.cs b/ManagerService/Controllers/ConfigurationController.cs
index 33a281f..8ea0b29 100644
--- a/ManagerService/Controllers/ConfigurationController.cs
+++ b/ManagerService/Controllers/ConfigurationController.cs
@@ -30,6 +30,7 @@ namespace ManagerService.Controllers
///
/// Get a list of all configuration (summary)
///
+ [AllowAnonymous]
[ProducesResponseType(typeof(List), 200)]
[ProducesResponseType(typeof(string), 500)]
[HttpGet]
diff --git a/ManagerService/Controllers/SectionController.cs b/ManagerService/Controllers/SectionController.cs
index 21daf5b..71c3e2b 100644
--- a/ManagerService/Controllers/SectionController.cs
+++ b/ManagerService/Controllers/SectionController.cs
@@ -52,6 +52,7 @@ namespace ManagerService.Controllers
/// Get a list of all section from a specific configuration
///
/// configuration id
+ [AllowAnonymous]
[ProducesResponseType(typeof(List), 200)]
[ProducesResponseType(typeof(string), 500)]
[ProducesResponseType(typeof(string), 400)]
@@ -284,6 +285,7 @@ namespace ManagerService.Controllers
Description = section.Description,
Latitude = "50.416639",
Longitude= "4.879169",
+ Images = new List()
}
};