Skip to content

Commit

Permalink
a granularity switching off feature is implemented (#47)
Browse files Browse the repository at this point in the history
* a granularity switching off feature is implemented
  • Loading branch information
EugeneElkin authored and ignatvilesov committed Jul 4, 2018
1 parent a21ef09 commit 466b589
Show file tree
Hide file tree
Showing 21 changed files with 692 additions and 385 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.9.0
* ADD: possibility to disable certain granularities for user access (granularity section on format panel)

## 1.8.3
* FIX: Year format correction was improved by using literals

Expand Down
35 changes: 35 additions & 0 deletions capabilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,41 @@
}
]
}
},
"granularityYearVisibility": {
"displayName": "Year visibility",
"displayNameKey": "Visual_GranularityYearVisibility",
"type": {
"bool": true
}
},
"granularityQuarterVisibility": {
"displayName": "Quarter visibility",
"displayNameKey": "Visual_GranularityQuarterVisibility",
"type": {
"bool": true
}
},
"granularityMonthVisibility": {
"displayName": "Month visibility",
"displayNameKey": "Visual_GranularityMonthVisibility",
"type": {
"bool": true
}
},
"granularityWeekVisibility": {
"displayName": "Week visibility",
"displayNameKey": "Visual_GranularityWeekVisibility",
"type": {
"bool": true
}
},
"granularityDayVisibility": {
"displayName": "Day visibility",
"displayNameKey": "Visual_GranularityDayVisibility",
"type": {
"bool": true
}
}
}
},
Expand Down

0 comments on commit 466b589

Please sign in to comment.