1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

send password history to server

This commit is contained in:
Kyle Spearrin
2018-07-27 16:44:20 -04:00
parent 9df96a3288
commit dab9954887
16 changed files with 243 additions and 18 deletions

View File

@@ -7,10 +7,10 @@ import { I18nService } from '../../abstractions/i18n.service';
import { PasswordGenerationService } from '../../abstractions/passwordGeneration.service';
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
import { PasswordHistory } from '../../models/domain/passwordHistory';
import { GeneratedPasswordHistory } from '../../models/domain/generatedPasswordHistory';
export class PasswordGeneratorHistoryComponent implements OnInit {
history: PasswordHistory[] = [];
history: GeneratedPasswordHistory[] = [];
constructor(protected passwordGenerationService: PasswordGenerationService, protected analytics: Angulartics2,
protected platformUtilsService: PlatformUtilsService, protected i18nService: I18nService,