From 489c438ff4a5fa75e36a47bdb482890fbc135b1f Mon Sep 17 00:00:00 2001 From: Andreas Coroiu Date: Wed, 12 Apr 2023 10:56:12 +0200 Subject: [PATCH] [EC-598] chore: clean up old commented code --- .../fido2-user-interface.service.abstraction.ts | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/libs/common/src/webauthn/abstractions/fido2-user-interface.service.abstraction.ts b/libs/common/src/webauthn/abstractions/fido2-user-interface.service.abstraction.ts index 2cd354556e0..4486cc5bbfc 100644 --- a/libs/common/src/webauthn/abstractions/fido2-user-interface.service.abstraction.ts +++ b/libs/common/src/webauthn/abstractions/fido2-user-interface.service.abstraction.ts @@ -5,22 +5,6 @@ export interface NewCredentialParams { export abstract class Fido2UserInterfaceService { newSession: (abortController?: AbortController) => Promise; - - // confirmCredential: (cipherId: string, abortController?: AbortController) => Promise; - // pickCredential: (cipherIds: string[], abortController?: AbortController) => Promise; - // confirmNewCredential: ( - // params: NewCredentialParams, - // abortController?: AbortController - // ) => Promise; - // confirmNewNonDiscoverableCredential: ( - // params: NewCredentialParams, - // abortController?: AbortController - // ) => Promise; - // informExcludedCredential: ( - // existingCipherIds: string[], - // newCredential: NewCredentialParams, - // abortController?: AbortController - // ) => Promise; } export abstract class Fido2UserInterfaceSession {