diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-11-08 16:58:35 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-08 16:58:35 +0100 |
| commit | c8a320082f45a26e8a295a7c86822ddc9ed99d8a (patch) | |
| tree | cf31efdc932a2571304e66150777f794c9950716 /MediaBrowser.Controller/Net | |
| parent | 79719780812ee3d00b0dcf2e0d6e4659964e151d (diff) | |
| parent | e78c63c4dc819867acddc5a15a7d7c02f7aa9b30 (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.cs | 5 |
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; } } } |
