mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-27 19:24:47 +03:00
completed auth database
This commit is contained in:
@@ -259,7 +259,28 @@ namespace MediaBrowser.Controller.Session
|
||||
/// <summary>
|
||||
/// Validates the security token.
|
||||
/// </summary>
|
||||
/// <param name="token">The token.</param>
|
||||
void ValidateSecurityToken(string token);
|
||||
/// <param name="accessToken">The access token.</param>
|
||||
void ValidateSecurityToken(string accessToken);
|
||||
|
||||
/// <summary>
|
||||
/// Logouts the specified access token.
|
||||
/// </summary>
|
||||
/// <param name="accessToken">The access token.</param>
|
||||
/// <returns>Task.</returns>
|
||||
Task Logout(string accessToken);
|
||||
|
||||
/// <summary>
|
||||
/// Revokes the user tokens.
|
||||
/// </summary>
|
||||
/// <param name="userId">The user identifier.</param>
|
||||
/// <returns>Task.</returns>
|
||||
Task RevokeUserTokens(string userId);
|
||||
|
||||
/// <summary>
|
||||
/// Determines whether the specified remote endpoint is local.
|
||||
/// </summary>
|
||||
/// <param name="remoteEndpoint">The remote endpoint.</param>
|
||||
/// <returns><c>true</c> if the specified remote endpoint is local; otherwise, <c>false</c>.</returns>
|
||||
bool IsLocal(string remoteEndpoint);
|
||||
}
|
||||
}
|
||||
@@ -123,7 +123,7 @@ namespace MediaBrowser.Controller.Session
|
||||
public List<string> SupportedCommands { get; set; }
|
||||
|
||||
public TranscodingInfo TranscodingInfo { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance is active.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user