aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-11-08 16:58:35 +0100
committerGitHub <noreply@github.com>2020-11-08 16:58:35 +0100
commitc8a320082f45a26e8a295a7c86822ddc9ed99d8a (patch)
treecf31efdc932a2571304e66150777f794c9950716 /MediaBrowser.Controller/Net
parent79719780812ee3d00b0dcf2e0d6e4659964e151d (diff)
parente78c63c4dc819867acddc5a15a7d7c02f7aa9b30 (diff)
Merge pull request #4443 from cvium/fix_auth_again_again_again
Remove OriginalAuthenticationInfo and add IsAuthenticated property
Diffstat (limited to 'MediaBrowser.Controller/Net')
-rw-r--r--MediaBrowser.Controller/Net/AuthorizationInfo.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Net/AuthorizationInfo.cs b/MediaBrowser.Controller/Net/AuthorizationInfo.cs
index 5c642edff..0194c596f 100644
--- a/MediaBrowser.Controller/Net/AuthorizationInfo.cs
+++ b/MediaBrowser.Controller/Net/AuthorizationInfo.cs
@@ -53,5 +53,10 @@ namespace MediaBrowser.Controller.Net
/// Gets or sets the user making the request.
/// </summary>
public User User { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether the token is authenticated.
+ /// </summary>
+ public bool IsAuthenticated { get; set; }
}
}