Skip to content
This repository was archived by the owner on Aug 31, 2026. It is now read-only.

Commit 243bd68

Browse files
authored
Merge pull request #5 from RallyCommunity/filter_tags_milestones
Add tags, milestones to whitelist
2 parents c9576c2 + 2bfbb90 commit 243bd68

8 files changed

Lines changed: 1680 additions & 21 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+

App-debug.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
],
1717
function() {
1818
Rally.launchApp('EstimationBoardApp', {
19-
name:"Estimation Board"
19+
name:"Estimation Board",
20+
parentRepos:"",
21+
version:"1.0.1"
2022
});
2123
}, true);
2224
</script>

BoardApp.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,17 @@ Ext.define('EstimationBoardApp', {
7979
'ArtifactSearch',
8080
'Owner',
8181
'ModelType'
82-
]
82+
],
83+
addQuickFilterConfig: {
84+
whiteListFields: ['Milestones', 'Tags']
85+
}
86+
},
87+
advancedFilterPanelConfig: {
88+
advancedFilterRowsConfig: {
89+
propertyFieldConfig: {
90+
whiteListFields: ['Milestones', 'Tags']
91+
}
92+
}
8393
}
8494
}
8595
}

deploy/App-external.html

Lines changed: 6 additions & 5 deletions
Large diffs are not rendered by default.

deploy/App-uncompressed.html

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,17 @@
449449
'ArtifactSearch',
450450
'Owner',
451451
'ModelType'
452-
]
452+
],
453+
addQuickFilterConfig: {
454+
whiteListFields: ['Milestones', 'Tags']
455+
}
456+
},
457+
advancedFilterPanelConfig: {
458+
advancedFilterRowsConfig: {
459+
propertyFieldConfig: {
460+
whiteListFields: ['Milestones', 'Tags']
461+
}
462+
}
453463
}
454464
}
455465
}
@@ -572,7 +582,8 @@
572582

573583
Rally.launchApp('EstimationBoardApp', {
574584
name:"Estimation Board",
575-
parentRepos:""
585+
parentRepos:"",
586+
version:"1.0.1"
576587
});
577588

578589
});

deploy/App.html

Lines changed: 6 additions & 5 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)