Commit f0ed4329d3e087933f15e9b85b1c2aef93a46c43
Committed by
GitHub
Merge pull request #3721 from YevhenBondarenko/feature/tenant-profile
DefaultTenantProfileConfiguration improvements
Showing
1 changed file
with
8 additions
and
0 deletions
@@ -26,6 +26,10 @@ export enum TenantProfileType { | @@ -26,6 +26,10 @@ export enum TenantProfileType { | ||
26 | export interface DefaultTenantProfileConfiguration { | 26 | export interface DefaultTenantProfileConfiguration { |
27 | maxDevices: number; | 27 | maxDevices: number; |
28 | maxAssets: number; | 28 | maxAssets: number; |
29 | + maxCustomers: number; | ||
30 | + maxUsers: number; | ||
31 | + maxDashboards: number; | ||
32 | + maxRuleChains: number; | ||
29 | 33 | ||
30 | transportTenantMsgRateLimit?: string; | 34 | transportTenantMsgRateLimit?: string; |
31 | transportTenantTelemetryMsgRateLimit?: string; | 35 | transportTenantTelemetryMsgRateLimit?: string; |
@@ -56,6 +60,10 @@ export function createTenantProfileConfiguration(type: TenantProfileType): Tenan | @@ -56,6 +60,10 @@ export function createTenantProfileConfiguration(type: TenantProfileType): Tenan | ||
56 | const defaultConfiguration: DefaultTenantProfileConfiguration = { | 60 | const defaultConfiguration: DefaultTenantProfileConfiguration = { |
57 | maxDevices: 0, | 61 | maxDevices: 0, |
58 | maxAssets: 0, | 62 | maxAssets: 0, |
63 | + maxCustomers: 0, | ||
64 | + maxUsers: 0, | ||
65 | + maxDashboards: 0, | ||
66 | + maxRuleChains: 0, | ||
59 | maxTransportMessages: 0, | 67 | maxTransportMessages: 0, |
60 | maxTransportDataPoints: 0, | 68 | maxTransportDataPoints: 0, |
61 | maxREExecutions: 0, | 69 | maxREExecutions: 0, |