mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
Don't use tokenService to manage emailVerified (#932)
* update send add edit component dependencies
This commit is contained in:
parent
a9ef011cf3
commit
68f2de171e
2
jslib
2
jslib
@ -1 +1 @@
|
|||||||
Subproject commit 92df63304029049891a46d575612222fb9b6c325
|
Subproject commit 66eec2b02260ce41227e83153020f561d105b1ba
|
@ -8,7 +8,6 @@ import { MessagingService } from 'jslib/abstractions/messaging.service';
|
|||||||
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
||||||
import { PolicyService } from 'jslib/abstractions/policy.service';
|
import { PolicyService } from 'jslib/abstractions/policy.service';
|
||||||
import { SendService } from 'jslib/abstractions/send.service';
|
import { SendService } from 'jslib/abstractions/send.service';
|
||||||
import { TokenService } from 'jslib/abstractions/token.service';
|
|
||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
|
||||||
import { AddEditComponent as BaseAddEditComponent } from 'jslib/angular/components/send/add-edit.component';
|
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,
|
constructor(i18nService: I18nService, platformUtilsService: PlatformUtilsService,
|
||||||
environmentService: EnvironmentService, datePipe: DatePipe,
|
environmentService: EnvironmentService, datePipe: DatePipe,
|
||||||
sendService: SendService, userService: UserService,
|
sendService: SendService, userService: UserService,
|
||||||
messagingService: MessagingService, policyService: PolicyService, tokenService: TokenService) {
|
messagingService: MessagingService, policyService: PolicyService) {
|
||||||
super(i18nService, platformUtilsService, environmentService, datePipe, sendService, userService,
|
super(i18nService, platformUtilsService, environmentService, datePipe, sendService, userService,
|
||||||
messagingService, policyService, tokenService);
|
messagingService, policyService);
|
||||||
}
|
}
|
||||||
|
|
||||||
copyLinkToClipboard(link: string) {
|
copyLinkToClipboard(link: string) {
|
||||||
|
Loading…
Reference in New Issue
Block a user