From ce1d22ff4493017b1d4b8215363c683b0069d818 Mon Sep 17 00:00:00 2001 From: garrettmills Date: Thu, 25 Nov 2021 16:39:25 -0600 Subject: [PATCH] Make the linter happy --- src/auth/external/oauth2/OAuth2Repository.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/auth/external/oauth2/OAuth2Repository.ts b/src/auth/external/oauth2/OAuth2Repository.ts index 9024623..e4572b5 100644 --- a/src/auth/external/oauth2/OAuth2Repository.ts +++ b/src/auth/external/oauth2/OAuth2Repository.ts @@ -1,7 +1,6 @@ import { Authenticatable, AuthenticatableCredentials, - AuthenticatableIdentifier, AuthenticatableRepository, } from '../../types' import {Inject, Injectable} from '../../../di' @@ -46,7 +45,7 @@ export class OAuth2Repository implements AuthenticatableRepository { return this.getAuthenticatableFromBearer(credentials.credential) } - getByIdentifier(id: AuthenticatableIdentifier): Awaitable> { + getByIdentifier(): Awaitable> { return undefined }