diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2021-06-24 06:21:41 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-24 06:21:41 -0400 |
| commit | d3e02e918d5586b0b8c74f1b79a13b76a978defd (patch) | |
| tree | 2dc878e046d2f5f609c2216705131e9863dc848f /MediaBrowser.Controller/Session/ISessionManager.cs | |
| parent | ae878fa051e73dd1df90f1fed3ca5f7ad28b7beb (diff) | |
| parent | 397868be95db2f705522cc975ac076e60decbf0f (diff) | |
Merge pull request #166 from crobibero/authdb-qc
Fix QuickConnect interation with AuthenticationDb
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionManager.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionManager.cs b/MediaBrowser.Controller/Session/ISessionManager.cs index 8be9ff521..88a905166 100644 --- a/MediaBrowser.Controller/Session/ISessionManager.cs +++ b/MediaBrowser.Controller/Session/ISessionManager.cs @@ -273,12 +273,7 @@ namespace MediaBrowser.Controller.Session /// <returns>Task{SessionInfo}.</returns> Task<AuthenticationResult> AuthenticateNewSession(AuthenticationRequest request); - /// <summary> - /// Authenticates a new session with quick connect. - /// </summary> - /// <param name="userId">The user id.</param> - /// <returns>Task{SessionInfo}.</returns> - Task<AuthenticationResult> AuthenticateQuickConnect(Guid userId); + Task<AuthenticationResult> AuthenticateDirect(AuthenticationRequest request); /// <summary> /// Reports the capabilities. |
