mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 22:08:27 +01:00
fixes #712 - multi-version grouping
This commit is contained in:
@@ -180,5 +180,12 @@ namespace MediaBrowser.Controller.Session
|
||||
/// <param name="remoteEndPoint">The remote end point.</param>
|
||||
/// <returns>Task{SessionInfo}.</returns>
|
||||
Task<SessionInfo> AuthenticateNewSession(User user, string password, string clientType, string appVersion, string deviceId, string deviceName, string remoteEndPoint);
|
||||
|
||||
/// <summary>
|
||||
/// Reports the capabilities.
|
||||
/// </summary>
|
||||
/// <param name="sessionId">The session identifier.</param>
|
||||
/// <param name="capabilities">The capabilities.</param>
|
||||
void ReportCapabilities(Guid sessionId, SessionCapabilities capabilities);
|
||||
}
|
||||
}
|
||||
@@ -155,6 +155,12 @@ namespace MediaBrowser.Controller.Session
|
||||
/// <value>The session controller.</value>
|
||||
public ISessionController SessionController { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether [supports fullscreen toggle].
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [supports fullscreen toggle]; otherwise, <c>false</c>.</value>
|
||||
public bool SupportsFullscreenToggle { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance is active.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user