mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 14:03:22 +08:00
FIX: Show staff bulk actions only to staff (#12823)
The bulk button is normally shown only to staff, which is why we did not do any explicit permissions check. Now we do display it on the messages page too, where it is accessible to everyone.
This commit is contained in:
parent
d53307b141
commit
7c3268e0c5
|
@ -77,20 +77,32 @@ addBulkButton("showTagTopics", "change_tags", {
|
|||
icon: "tag",
|
||||
class: "btn-default",
|
||||
enabledSetting: "tagging_enabled",
|
||||
buttonVisible: function () {
|
||||
return this.currentUser.staff;
|
||||
},
|
||||
});
|
||||
addBulkButton("showAppendTagTopics", "append_tags", {
|
||||
icon: "tag",
|
||||
class: "btn-default",
|
||||
enabledSetting: "tagging_enabled",
|
||||
buttonVisible: function () {
|
||||
return this.currentUser.staff;
|
||||
},
|
||||
});
|
||||
addBulkButton("removeTags", "remove_tags", {
|
||||
icon: "tag",
|
||||
class: "btn-default",
|
||||
enabledSetting: "tagging_enabled",
|
||||
buttonVisible: function () {
|
||||
return this.currentUser.staff;
|
||||
},
|
||||
});
|
||||
addBulkButton("deleteTopics", "delete", {
|
||||
icon: "trash-alt",
|
||||
class: "btn-danger",
|
||||
buttonVisible: function () {
|
||||
return this.currentUser.staff;
|
||||
},
|
||||
});
|
||||
|
||||
// Modal for performing bulk actions on topics
|
||||
|
@ -112,7 +124,7 @@ export default Controller.extend(ModalFunctionality, {
|
|||
if (b.enabledSetting && !this.siteSettings[b.enabledSetting]) {
|
||||
return false;
|
||||
}
|
||||
return b.buttonVisible(topics);
|
||||
return b.buttonVisible.call(this, topics);
|
||||
})
|
||||
);
|
||||
this.set("modal.modalClass", "topic-bulk-actions-modal small");
|
||||
|
|
Loading…
Reference in New Issue
Block a user