aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/AuthenticatedAttribute.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.Controller/Net/AuthenticatedAttribute.cs
parent0ef95fb19cde8f4443e2cede94ec21583c3dc9d7 (diff)
fixes #941 - Rework password recovery and remove IsLocal checks
Diffstat (limited to 'MediaBrowser.Controller/Net/AuthenticatedAttribute.cs')
-rw-r--r--MediaBrowser.Controller/Net/AuthenticatedAttribute.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/MediaBrowser.Controller/Net/AuthenticatedAttribute.cs b/MediaBrowser.Controller/Net/AuthenticatedAttribute.cs
index 83e404dfc..17c91c977 100644
--- a/MediaBrowser.Controller/Net/AuthenticatedAttribute.cs
+++ b/MediaBrowser.Controller/Net/AuthenticatedAttribute.cs
@@ -10,12 +10,6 @@ namespace MediaBrowser.Controller.Net
public IAuthService AuthService { get; set; }
/// <summary>
- /// Gets or sets a value indicating whether or not to allow local unauthenticated access.
- /// </summary>
- /// <value><c>true</c> if [allow local]; otherwise, <c>false</c>.</value>
- public bool AllowLocal { get; set; }
-
- /// <summary>
/// Gets or sets the roles.
/// </summary>
/// <value>The roles.</value>
@@ -70,7 +64,6 @@ namespace MediaBrowser.Controller.Net
{
bool EscapeParentalControl { get; }
- bool AllowLocal { get; }
IEnumerable<string> GetRoles();
}
}