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 | 26 | export interface DefaultTenantProfileConfiguration { |
27 | 27 | maxDevices: number; |
28 | 28 | maxAssets: number; |
29 | + maxCustomers: number; | |
30 | + maxUsers: number; | |
31 | + maxDashboards: number; | |
32 | + maxRuleChains: number; | |
29 | 33 | |
30 | 34 | transportTenantMsgRateLimit?: string; |
31 | 35 | transportTenantTelemetryMsgRateLimit?: string; |
... | ... | @@ -56,6 +60,10 @@ export function createTenantProfileConfiguration(type: TenantProfileType): Tenan |
56 | 60 | const defaultConfiguration: DefaultTenantProfileConfiguration = { |
57 | 61 | maxDevices: 0, |
58 | 62 | maxAssets: 0, |
63 | + maxCustomers: 0, | |
64 | + maxUsers: 0, | |
65 | + maxDashboards: 0, | |
66 | + maxRuleChains: 0, | |
59 | 67 | maxTransportMessages: 0, |
60 | 68 | maxTransportDataPoints: 0, |
61 | 69 | maxREExecutions: 0, | ... | ... |