Fix DefaultTenantProfileConfiguration model

This commit is contained in:
Viacheslav Klimov 2021-06-16 18:52:07 +03:00
parent eec4f5a403
commit 9717ef5ff5

View File

@ -49,8 +49,10 @@ export interface DefaultTenantProfileConfiguration {
maxRuleNodeExecutionsPerMessage: number;
maxEmails: number;
maxSms: number;
maxCreatedAlarms: number;
defaultStorageTtlDays: number;
alarmsTtlDays: number;
}
export type TenantProfileConfigurations = DefaultTenantProfileConfiguration;
@ -81,7 +83,9 @@ export function createTenantProfileConfiguration(type: TenantProfileType): Tenan
maxRuleNodeExecutionsPerMessage: 0,
maxEmails: 0,
maxSms: 0,
defaultStorageTtlDays: 0
maxCreatedAlarms: 0,
defaultStorageTtlDays: 0,
alarmsTtlDays: 0
};
configuration = {...defaultConfiguration, type: TenantProfileType.DEFAULT};
break;