diff options
| author | ZadenRB <zaden.ruggieroboune@gmail.com> | 2020-04-24 17:11:11 -0600 |
|---|---|---|
| committer | ZadenRB <zaden.ruggieroboune@gmail.com> | 2020-04-24 17:11:11 -0600 |
| commit | 85853f9ce3d77469b84e3334d7080cd025474ee8 (patch) | |
| tree | 91c4e85aa9452104636244270e1d03a6edca3754 /Jellyfin.Api/Controllers/NotificationsController.cs | |
| parent | 7693cc0db006ef4eb3a90d161b14ac4551bb96a7 (diff) | |
Add back in return type documentation
Diffstat (limited to 'Jellyfin.Api/Controllers/NotificationsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/NotificationsController.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Jellyfin.Api/Controllers/NotificationsController.cs b/Jellyfin.Api/Controllers/NotificationsController.cs index 0bf3aa1b4..8da2a6c53 100644 --- a/Jellyfin.Api/Controllers/NotificationsController.cs +++ b/Jellyfin.Api/Controllers/NotificationsController.cs @@ -95,6 +95,7 @@ namespace Jellyfin.Api.Controllers /// <param name="description">The description of the notification.</param> /// <param name="url">The URL of the notification.</param> /// <param name="level">The level of the notification.</param> + /// <returns>Status.</returns> [HttpPost("Admin")] [ProducesResponseType(StatusCodes.Status200OK)] public ActionResult CreateAdminNotification( @@ -123,6 +124,7 @@ namespace Jellyfin.Api.Controllers /// </summary> /// <param name="userId">The userID.</param> /// <param name="ids">A comma-separated list of the IDs of notifications which should be set as read.</param> + /// <returns>Status.</returns> [HttpPost("{UserID}/Read")] [ProducesResponseType(StatusCodes.Status200OK)] public ActionResult SetRead( @@ -137,6 +139,7 @@ namespace Jellyfin.Api.Controllers /// </summary> /// <param name="userId">The userID.</param> /// <param name="ids">A comma-separated list of the IDs of notifications which should be set as unread.</param> + /// <returns>Status.</returns> [HttpPost("{UserID}/Unread")] [ProducesResponseType(StatusCodes.Status200OK)] public ActionResult SetUnread( |
