1
0
mirror of https://github.com/bitwarden/web synced 2025-12-15 15:53:18 +00:00

Don't use tokenService to manage emailVerified (#932)

* update send add edit component dependencies
This commit is contained in:
Thomas Rittson
2021-04-16 00:28:21 +10:00
committed by GitHub
parent a9ef011cf3
commit 68f2de171e
2 changed files with 3 additions and 4 deletions

View File

@@ -8,7 +8,6 @@ import { MessagingService } from 'jslib/abstractions/messaging.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { PolicyService } from 'jslib/abstractions/policy.service';
import { SendService } from 'jslib/abstractions/send.service';
import { TokenService } from 'jslib/abstractions/token.service';
import { UserService } from 'jslib/abstractions/user.service';
import { AddEditComponent as BaseAddEditComponent } from 'jslib/angular/components/send/add-edit.component';
@@ -21,9 +20,9 @@ export class AddEditComponent extends BaseAddEditComponent {
constructor(i18nService: I18nService, platformUtilsService: PlatformUtilsService,
environmentService: EnvironmentService, datePipe: DatePipe,
sendService: SendService, userService: UserService,
messagingService: MessagingService, policyService: PolicyService, tokenService: TokenService) {
messagingService: MessagingService, policyService: PolicyService) {
super(i18nService, platformUtilsService, environmentService, datePipe, sendService, userService,
messagingService, policyService, tokenService);
messagingService, policyService);
}
copyLinkToClipboard(link: string) {