1
0
mirror of https://github.com/bitwarden/web synced 2025-12-15 07:43:16 +00:00

remembear csv importer

This commit is contained in:
Kyle Spearrin
2019-02-13 15:32:41 -05:00
parent fb2288c4bc
commit 259725882a
3 changed files with 10 additions and 2 deletions

2
jslib

Submodule jslib updated: 647b254a71...76c53bc641

View File

@@ -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() {

View File

@@ -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" &rarr; "Account" &rarr; "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">