aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/UserController.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-08-04 08:27:54 -0600
committercrobibero <cody@robibe.ro>2020-08-04 08:27:54 -0600
commit8f6c2e767906c1d4c62d51ae2e66af1a78edde9a (patch)
tree4e6736c8252b0aeaf7277aa0326852f665d81f4d /Jellyfin.Api/Controllers/UserController.cs
parent8385c5459142e69eb4004d32b3d772b998c37b0b (diff)
Remove leading slash from route attributes
Diffstat (limited to 'Jellyfin.Api/Controllers/UserController.cs')
-rw-r--r--Jellyfin.Api/Controllers/UserController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/UserController.cs b/Jellyfin.Api/Controllers/UserController.cs
index ce0c9281b..482baf641 100644
--- a/Jellyfin.Api/Controllers/UserController.cs
+++ b/Jellyfin.Api/Controllers/UserController.cs
@@ -27,7 +27,7 @@ namespace Jellyfin.Api.Controllers
/// <summary>
/// User controller.
/// </summary>
- [Route("/Users")]
+ [Route("Users")]
public class UserController : BaseJellyfinApiController
{
private readonly IUserManager _userManager;