Fix + allow anonymous for tablet access (get)
This commit is contained in:
parent
22c34d90a6
commit
f03ef70fa3
@ -30,6 +30,7 @@ namespace ManagerService.Controllers
|
||||
/// <summary>
|
||||
/// Get a list of all configuration (summary)
|
||||
/// </summary>
|
||||
[AllowAnonymous]
|
||||
[ProducesResponseType(typeof(List<ConfigurationDTO>), 200)]
|
||||
[ProducesResponseType(typeof(string), 500)]
|
||||
[HttpGet]
|
||||
|
||||
@ -52,6 +52,7 @@ namespace ManagerService.Controllers
|
||||
/// Get a list of all section from a specific configuration
|
||||
/// </summary>
|
||||
/// <param name="id">configuration id</param>
|
||||
[AllowAnonymous]
|
||||
[ProducesResponseType(typeof(List<SectionDTO>), 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<ImageGeoPoint>()
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user