diff options
| author | Patrick Barron <barronpm@gmail.com> | 2021-06-18 18:26:58 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2021-06-18 18:26:58 -0400 |
| commit | 336ba2879f325a4efd52bc7737ce94f40369bfeb (patch) | |
| tree | 56f159b85dde61ab4e1b1ca75caedde4f86301fd /MediaBrowser.Controller/Security | |
| parent | 0292936c659b25464c1bc1e1b80711f873a1a7cd (diff) | |
Re-add support for API keys
Diffstat (limited to 'MediaBrowser.Controller/Security')
| -rw-r--r-- | MediaBrowser.Controller/Security/IAuthenticationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Security/IAuthenticationManager.cs b/MediaBrowser.Controller/Security/IAuthenticationManager.cs index 46d0c6622..29621b73e 100644 --- a/MediaBrowser.Controller/Security/IAuthenticationManager.cs +++ b/MediaBrowser.Controller/Security/IAuthenticationManager.cs @@ -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); } } |
