From 3c9c1a2ab7e4f81fc539663302a787a1c6454536 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 4 Mar 2019 21:06:41 -0500 Subject: [PATCH] doc model param --- src/Api/Public/Controllers/GroupsController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Api/Public/Controllers/GroupsController.cs b/src/Api/Public/Controllers/GroupsController.cs index 8333bc736..6df656b3c 100644 --- a/src/Api/Public/Controllers/GroupsController.cs +++ b/src/Api/Public/Controllers/GroupsController.cs @@ -73,6 +73,7 @@ namespace Bit.Api.Public.Controllers /// /// Creates a new group object. /// + /// The request model. [HttpPost] [ProducesResponseType(typeof(GroupResponseModel), (int)HttpStatusCode.OK)] [ProducesResponseType(typeof(ErrorResponseModel), (int)HttpStatusCode.BadRequest)] @@ -93,6 +94,7 @@ namespace Bit.Api.Public.Controllers /// the value of the existing property will be reset. /// /// The identifier of the group to be updated. + /// The request model. [HttpPut("{id}")] [ProducesResponseType(typeof(GroupResponseModel), (int)HttpStatusCode.OK)] [ProducesResponseType(typeof(ErrorResponseModel), (int)HttpStatusCode.BadRequest)]