FIX: Remove 'staff_only' results option for non-staff (#8565)

This commit is contained in:
Mark VanLandingham 2019-12-17 13:43:15 -08:00 committed by GitHub
parent e916bd7ea0
commit 44612f900e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 5 deletions

View File

@ -62,7 +62,7 @@ export default Controller.extend({
closedPollResult,
staffPollResult
) {
return [
let options = [
{
name: I18n.t("poll.ui_builder.poll_result.always"),
value: alwaysPollResult
@ -74,12 +74,15 @@ export default Controller.extend({
{
name: I18n.t("poll.ui_builder.poll_result.closed"),
value: closedPollResult
},
{
name: I18n.t("poll.ui_builder.poll_result.staff"),
value: staffPollResult
}
];
if (this.currentUser.staff) {
options.push({
name: I18n.t("poll.ui_builder.poll_result.staff"),
value: staffPollResult
});
}
return options;
},
@computed("pollType", "regularPollType")

View File

@ -311,3 +311,25 @@ test("multiple pollOutput", function(assert) {
"it should return the right output"
);
});
test("staff_only option is not present for non-staff", function(assert) {
const controller = this.subject();
controller.currentUser = { staff: false };
assert.ok(
controller.pollResults.filter(result => result.value === "staff_only")
.length === 0,
"staff_only is not present"
);
});
test("staff_only option is present for staff", function(assert) {
const controller = this.subject();
controller.currentUser = { staff: true };
assert.ok(
controller.pollResults.filter(result => result.value === "staff_only")
.length === 1,
"staff_only is present"
);
});