mirror of
https://github.com/bitwarden/web
synced 2025-12-15 07:43:16 +00:00
remembear csv importer
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 647b254a71...76c53bc641
@@ -3,8 +3,10 @@ import { Router } from '@angular/router';
|
|||||||
|
|
||||||
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
||||||
import { I18nService } from 'jslib/abstractions/i18n.service';
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
||||||
|
import { LockService } from 'jslib/abstractions/lock.service';
|
||||||
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
||||||
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
||||||
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
|
||||||
import { RouterService } from '../services/router.service';
|
import { RouterService } from '../services/router.service';
|
||||||
@@ -19,8 +21,10 @@ export class LockComponent extends BaseLockComponent {
|
|||||||
constructor(router: Router, i18nService: I18nService,
|
constructor(router: Router, i18nService: I18nService,
|
||||||
platformUtilsService: PlatformUtilsService, messagingService: MessagingService,
|
platformUtilsService: PlatformUtilsService, messagingService: MessagingService,
|
||||||
userService: UserService, cryptoService: CryptoService,
|
userService: UserService, cryptoService: CryptoService,
|
||||||
|
storageService: StorageService, lockService: LockService,
|
||||||
private routerService: RouterService) {
|
private routerService: RouterService) {
|
||||||
super(router, i18nService, platformUtilsService, messagingService, userService, cryptoService);
|
super(router, i18nService, platformUtilsService, messagingService, userService, cryptoService,
|
||||||
|
storageService, lockService);
|
||||||
}
|
}
|
||||||
|
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
|
|||||||
@@ -178,6 +178,10 @@
|
|||||||
Open the Kaspersky Password Manager desktop application and navigate to "Settings" → "Import/Export". Locate
|
Open the Kaspersky Password Manager desktop application and navigate to "Settings" → "Import/Export". Locate
|
||||||
the "Export to text file" section and select the "Export" button to save the TXT file.
|
the "Export to text file" section and select the "Export" button to save the TXT file.
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
<ng-container *ngIf="format === 'remembearcsv'">
|
||||||
|
Open the RememBear desktop application and navigate to "Settings" → "Account" → "Export".
|
||||||
|
Enter your master password and select the "Export Anyway" button to save the CSV file.
|
||||||
|
</ng-container>
|
||||||
</app-callout>
|
</app-callout>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
|
|||||||
Reference in New Issue
Block a user