-
Type: Improvement
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 7.10, 8.10, 9.2
-
Component/s: Quotas
-
Tags:
-
Backlog priority:600
-
Impact type:Configuration Change
-
Upgrade notes:
-
Sprint:nxFG 9.3.2
-
Story Points:3
- Currently the quota limit is hardcoded to 999GB (see quotaLimit.png)
- This is related to this code:
public long getMaxQuotaSliderValue() { long maxQuotaSize = -1L; DocumentModel doc = navigationContext.getCurrentDocument(); if (doc != null) { maxQuotaSize = getQuotaStatsService().getQuotaFromParent(doc, documentManager); } return maxQuotaSize > 0 ? maxQuotaSize : 1072668082176L; // 999GB }
- this should be parameter as it prevents customers to use more space (like several terabytes for example)
- is related to
-
NXDOC-1345 Add max size configuration to Nuxeo Quota docs
- Resolved