Make the linter happy
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Garrett Mills 2021-11-25 16:39:25 -06:00
parent b7bfb3e153
commit ce1d22ff44

View File

@ -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<Maybe<Authenticatable>> {
getByIdentifier(): Awaitable<Maybe<Authenticatable>> {
return undefined
}