diff --git a/Jellyfin.Api/Controllers/NotificationsController.cs b/Jellyfin.Api/Controllers/NotificationsController.cs
index 6602fca9c7..31747584e1 100644
--- a/Jellyfin.Api/Controllers/NotificationsController.cs
+++ b/Jellyfin.Api/Controllers/NotificationsController.cs
@@ -1,6 +1,5 @@
#nullable enable
#pragma warning disable CA1801
-#pragma warning disable SA1313
using System;
using System.Collections.Generic;
@@ -37,17 +36,17 @@ namespace Jellyfin.Api.Controllers
///
/// Endpoint for getting a user's notifications.
///
- /// The UserID.
- /// An optional filter by IsRead.
- /// The optional index to start at. All notifications with a lower index will be dropped from the results.
- /// An optional limit on the number of notifications returned.
+ /// The UserID.
+ /// An optional filter by IsRead.
+ /// The optional index to start at. All notifications with a lower index will be dropped from the results.
+ /// An optional limit on the number of notifications returned.
/// A read-only list of all of the user's notifications.
[HttpGet("{UserID}")]
public IReadOnlyList GetNotifications(
- [FromRoute] string UserID,
- [FromQuery] bool? IsRead,
- [FromQuery] int? StartIndex,
- [FromQuery] int? Limit)
+ [FromRoute] string userID,
+ [FromQuery] bool? isRead,
+ [FromQuery] int? startIndex,
+ [FromQuery] int? limit)
{
return new List();
}
@@ -55,11 +54,11 @@ namespace Jellyfin.Api.Controllers
///
/// Endpoint for getting a user's notification summary.
///
- /// The UserID.
+ /// The userID.
/// Notifications summary for the user.
- [HttpGet("{UserId}/Summary")]
+ [HttpGet("{UserID}/Summary")]
public NotificationsSummaryDto GetNotificationsSummary(
- [FromRoute] string UserID)
+ [FromRoute] string userID)
{
return new NotificationsSummaryDto();
}
@@ -87,23 +86,23 @@ namespace Jellyfin.Api.Controllers
///
/// Endpoint to send a notification to all admins.
///
- /// The name of the notification.
- /// The description of the notification.
- /// The URL of the notification.
- /// The level of the notification.
+ /// The name of the notification.
+ /// The description of the notification.
+ /// The URL of the notification.
+ /// The level of the notification.
[HttpPost("Admin")]
public void CreateAdminNotification(
- [FromForm] string Name,
- [FromForm] string Description,
- [FromForm] string? URL,
- [FromForm] NotificationLevel Level)
+ [FromForm] string name,
+ [FromForm] string description,
+ [FromForm] string? url,
+ [FromForm] NotificationLevel level)
{
var notification = new NotificationRequest
{
- Name = Name,
- Description = Description,
- Url = URL,
- Level = Level,
+ Name = name,
+ Description = description,
+ Url = url,
+ Level = level,
UserIds = _userManager.Users.Where(i => i.Policy.IsAdministrator).Select(i => i.Id).ToArray(),
Date = DateTime.UtcNow,
};
@@ -114,24 +113,24 @@ namespace Jellyfin.Api.Controllers
///
/// Endpoint to set notifications as read.
///
- /// The UserID.
- /// The IDs of notifications which should be set as read.
+ /// The userID.
+ /// The IDs of notifications which should be set as read.
[HttpPost("{UserID}/Read")]
public void SetRead(
- [FromRoute] string UserID,
- [FromForm] List IDs)
+ [FromRoute] string userID,
+ [FromForm] List ids)
{
}
///
/// Endpoint to set notifications as unread.
///
- /// The UserID.
- /// The IDs of notifications which should be set as unread.
+ /// The userID.
+ /// The IDs of notifications which should be set as unread.
[HttpPost("{UserID}/Unread")]
public void SetUnread(
- [FromRoute] string UserID,
- [FromForm] List IDs)
+ [FromRoute] string userID,
+ [FromForm] List ids)
{
}
}