mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
fix: updated init whitelabel settings (#12567)
This commit is contained in:
parent
7ef433175e
commit
b9303fa4ab
1 changed files with 2 additions and 2 deletions
|
|
@ -183,8 +183,8 @@ export class EmailService implements IEmailService {
|
|||
async init(organizationId?: string | null) {
|
||||
const whiteLabelSettings = await this.emailUtilService.retrieveWhiteLabelSettings(organizationId);
|
||||
this.SMTP = await this.emailUtilService.retrieveSmtpSettings();
|
||||
this.WHITE_LABEL_TEXT = whiteLabelSettings?.text;
|
||||
this.WHITE_LABEL_LOGO = whiteLabelSettings?.logo;
|
||||
this.WHITE_LABEL_TEXT = whiteLabelSettings?.white_label_text;
|
||||
this.WHITE_LABEL_LOGO = whiteLabelSettings?.white_label_logo;
|
||||
this.defaultWhiteLabelState = whiteLabelSettings?.default;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue