diff --git a/common/src/abstractions/token.service.ts b/common/src/abstractions/token.service.ts index bbd01526..44e7c164 100644 --- a/common/src/abstractions/token.service.ts +++ b/common/src/abstractions/token.service.ts @@ -13,8 +13,8 @@ export abstract class TokenService { setClientSecret: (clientSecret: string) => Promise; getClientSecret: () => Promise; toggleTokens: () => Promise; - setTwoFactorToken: (token: string, email: string) => Promise; - getTwoFactorToken: (email: string) => Promise; + setTwoFactorToken: (token: string) => Promise; + getTwoFactorToken: () => Promise; clearTwoFactorToken: () => Promise; clearToken: (userId?: string) => Promise; decodeToken: (token?: string) => any;