We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 203275b commit 197f99dCopy full SHA for 197f99d
core/Controllers/ActivityAreaController.cs
@@ -40,6 +40,7 @@ public IActionResult GetAllActivityAreas([FromQuery] string? search)
40
/// <param name="id">The activity Area Id</param>
41
/// <returns>data of the activityArea</returns>
42
[HttpGet("{id}")]
43
+ [ProducesResponseType<Response<ActivityAreaResponseDTO>>(StatusCodes.Status200OK)]
44
public IActionResult GetOneActivityArea(Guid id)
45
{
46
var activityArea = activityAreaService.GetActivityArea(id);
0 commit comments