1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-26 17:43:22 +00:00

[authService refactor] Fix browser by not using instanceof (#647)

* use authenticationType enum instead of instanceof
This commit is contained in:
Thomas Rittson
2022-02-07 07:33:19 +10:00
committed by GitHub
parent 380a7c7ee5
commit 9caea70ea2
3 changed files with 20 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
export enum AuthenticationType {
Password = 0,
Sso = 1,
Api = 2,
}