Skip to content

Commit

Permalink
Move IDisposable to IAuthenticationApiClient (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck authored Mar 30, 2023
1 parent 8ad32c9 commit 49deb9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Auth0.AuthenticationApi/AuthenticationApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace Auth0.AuthenticationApi
/// <remarks>
/// Full documentation on the Auth0 Authentication API is available at https://auth0.com/docs/api/authentication
/// </remarks>
public class AuthenticationApiClient : IAuthenticationApiClient, IDisposable
public class AuthenticationApiClient : IAuthenticationApiClient
{
readonly IdTokenValidator idTokenValidator;
readonly TimeSpan idTokenValidationLeeway = TimeSpan.FromMinutes(1);
Expand Down
2 changes: 1 addition & 1 deletion src/Auth0.AuthenticationApi/IAuthenticationApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Auth0.AuthenticationApi
/// <remarks>
/// Full documentation for the Authentication API is available at https://auth0.com/docs/auth-api
/// </remarks>
public interface IAuthenticationApiClient
public interface IAuthenticationApiClient : IDisposable
{
/// <summary>
/// Base URI that will be used for all the requests.
Expand Down

0 comments on commit 49deb9e

Please sign in to comment.