mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-09 09:51:02 +01:00
Don't use tokenService to manage emailVerified (#1788)
* Update send add-edit component dependencies
This commit is contained in:
parent
44463e7bc0
commit
b029ead5f6
2
jslib
2
jslib
@ -1 +1 @@
|
|||||||
Subproject commit 92df63304029049891a46d575612222fb9b6c325
|
Subproject commit 66eec2b02260ce41227e83153020f561d105b1ba
|
@ -16,7 +16,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 { PopupUtilsService } from '../services/popup-utils.service';
|
import { PopupUtilsService } from '../services/popup-utils.service';
|
||||||
@ -41,9 +40,9 @@ export class SendAddEditComponent extends BaseAddEditComponent {
|
|||||||
userService: UserService, messagingService: MessagingService, policyService: PolicyService,
|
userService: UserService, messagingService: MessagingService, policyService: PolicyService,
|
||||||
environmentService: EnvironmentService, datePipe: DatePipe, sendService: SendService,
|
environmentService: EnvironmentService, datePipe: DatePipe, sendService: SendService,
|
||||||
private route: ActivatedRoute, private router: Router, private location: Location,
|
private route: ActivatedRoute, private router: Router, private location: Location,
|
||||||
private popupUtilsService: PopupUtilsService, tokenService: TokenService) {
|
private popupUtilsService: PopupUtilsService) {
|
||||||
super(i18nService, platformUtilsService, environmentService, datePipe, sendService, userService,
|
super(i18nService, platformUtilsService, environmentService, datePipe, sendService, userService,
|
||||||
messagingService, policyService, tokenService);
|
messagingService, policyService);
|
||||||
}
|
}
|
||||||
|
|
||||||
get showFileSelector(): boolean {
|
get showFileSelector(): boolean {
|
||||||
|
Loading…
Reference in New Issue
Block a user