Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
pass messagingService dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Jan 3, 2019
1 parent 6cffabe commit 9728116
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jslib
3 changes: 1 addition & 2 deletions src/app/organizations/vault/add-edit.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ export class AddEditComponent extends BaseAddEditComponent {
auditService: AuditService, stateService: StateService,
userService: UserService, collectionService: CollectionService,
totpService: TotpService, passwordGenerationService: PasswordGenerationService,
private apiService: ApiService,
messagingService: MessagingService) {
private apiService: ApiService, messagingService: MessagingService) {
super(cipherService, folderService, i18nService, platformUtilsService, auditService, stateService,
userService, collectionService, totpService, passwordGenerationService, messagingService);
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/vault/add-edit.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class AddEditComponent extends BaseAddEditComponent {
protected totpService: TotpService, protected passwordGenerationService: PasswordGenerationService,
protected messagingService: MessagingService) {
super(cipherService, folderService, i18nService, platformUtilsService, auditService, stateService,
userService, collectionService);
userService, collectionService, messagingService);
}

async ngOnInit() {
Expand Down

0 comments on commit 9728116

Please sign in to comment.