Re-add support for API keys

This commit is contained in:
Patrick Barron
2021-06-18 18:26:58 -04:00
parent 0292936c65
commit 336ba2879f
6 changed files with 22 additions and 10 deletions

View File

@@ -29,6 +29,6 @@ namespace MediaBrowser.Controller.Security
/// </summary>
/// <param name="accessToken">The access token.</param>
/// <returns>A task representing the deletion of the API key.</returns>
Task DeleteApiKey(Guid accessToken);
Task DeleteApiKey(string accessToken);
}
}