aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/System/SystemService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-08 22:18:14 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-08 22:18:14 -0500
commit40897bac1494791e1ec6abcfe85cda27d4664a32 (patch)
tree4788db3f5e35a3a06c9668f4460299c4f4a17ca1 /MediaBrowser.Api/System/SystemService.cs
parent0ef95fb19cde8f4443e2cede94ec21583c3dc9d7 (diff)
fixes #941 - Rework password recovery and remove IsLocal checks
Diffstat (limited to 'MediaBrowser.Api/System/SystemService.cs')
-rw-r--r--MediaBrowser.Api/System/SystemService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Api/System/SystemService.cs b/MediaBrowser.Api/System/SystemService.cs
index aa01e1b65..3b8eb7b6f 100644
--- a/MediaBrowser.Api/System/SystemService.cs
+++ b/MediaBrowser.Api/System/SystemService.cs
@@ -44,9 +44,10 @@ namespace MediaBrowser.Api.System
/// This is currently not authenticated because the uninstaller needs to be able to shutdown the server.
/// </summary>
[Route("/System/Shutdown", "POST", Summary = "Shuts down the application")]
- [Authenticated(AllowLocal = true)]
public class ShutdownApplication
{
+ // TODO: This is not currently authenticated due to uninstaller
+ // Improve later
}
[Route("/System/Logs", "GET", Summary = "Gets a list of available server log files")]