Make the linter happy
continuous-integration/drone/push Build is failing Details

orm-types
Garrett Mills 2 years ago
parent b7bfb3e153
commit ce1d22ff44

@ -1,7 +1,6 @@
import { import {
Authenticatable, Authenticatable,
AuthenticatableCredentials, AuthenticatableCredentials,
AuthenticatableIdentifier,
AuthenticatableRepository, AuthenticatableRepository,
} from '../../types' } from '../../types'
import {Inject, Injectable} from '../../../di' import {Inject, Injectable} from '../../../di'
@ -46,7 +45,7 @@ export class OAuth2Repository implements AuthenticatableRepository {
return this.getAuthenticatableFromBearer(credentials.credential) return this.getAuthenticatableFromBearer(credentials.credential)
} }
getByIdentifier(id: AuthenticatableIdentifier): Awaitable<Maybe<Authenticatable>> { getByIdentifier(): Awaitable<Maybe<Authenticatable>> {
return undefined return undefined
} }

Loading…
Cancel
Save