diff options
| author | gnattu <gnattu@users.noreply.github.com> | 2024-09-24 22:15:53 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-24 08:15:53 -0600 |
| commit | 75bbd3029613829a9b55ac01e27093583fc8cf52 (patch) | |
| tree | 925f7f43c0186b6338bd865d79b5f92a3932f797 /MediaBrowser.Controller/Session/ISessionManager.cs | |
| parent | 38d0b004baf4ff80d178a30d720e81e66b532b75 (diff) | |
Fix get sessions with api key (#12696)
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionManager.cs b/MediaBrowser.Controller/Session/ISessionManager.cs index f2e98dd78..462a62455 100644 --- a/MediaBrowser.Controller/Session/ISessionManager.cs +++ b/MediaBrowser.Controller/Session/ISessionManager.cs @@ -300,8 +300,9 @@ namespace MediaBrowser.Controller.Session /// <param name="deviceId">The device id.</param> /// <param name="activeWithinSeconds">Active within session limit.</param> /// <param name="controllableUserToCheck">Filter for sessions remote controllable for this user.</param> + /// <param name="isApiKey">Is the request authenticated with API key.</param> /// <returns>IReadOnlyList{SessionInfoDto}.</returns> - IReadOnlyList<SessionInfoDto> GetSessions(Guid userId, string deviceId, int? activeWithinSeconds, Guid? controllableUserToCheck); + IReadOnlyList<SessionInfoDto> GetSessions(Guid userId, string deviceId, int? activeWithinSeconds, Guid? controllableUserToCheck, bool isApiKey); /// <summary> /// Gets the session by authentication token. |
