fixed build

pull/3632/head
tidusjar 4 years ago
parent 9e945b9083
commit d8b98035de

@ -13,6 +13,7 @@ import { IdentityService, ImageService, NotificationService, SettingsService } f
export class ResetPasswordComponent implements OnInit {
public form: FormGroup;
public customizationSettings: ICustomizationSettings;
public emailSettingsEnabled: boolean;
public baseUrl: string;
public background: any;
@ -35,6 +36,7 @@ export class ResetPasswordComponent implements OnInit {
if (base.length > 1) {
this.baseUrl = base;
}
this.settingsService.getCustomization().subscribe(x => this.customizationSettings = x);
this.settingsService.getEmailSettingsEnabled().subscribe(x => this.emailSettingsEnabled = x);
}

Loading…
Cancel
Save