0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 15:21:11 +02:00

DEV: Refactor staff condition in category-chooser for simplicity

Dieser Commit ist enthalten in:
jumagura 2023-10-06 22:35:36 -04:00
Ursprung 61c4574908
Commit 9656303c63
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -88,7 +88,7 @@ export default {
categoriesByScope(options = {}) {
let categories = this._super(options);
const currentUser = this.currentUser;
if (!(currentUser && (currentUser.admin || currentUser.staff))) {
if (!currentUser?.staff) {
categories = categories.filter((category) => {
return !category.custom_fields?.create_topic_wizard;
});

Datei anzeigen

@ -4,7 +4,7 @@ import selectKit from "discourse/tests/helpers/select-kit-helper";
import { test } from "qunit";
acceptance("Category Chooser Initializer for regular users", function (needs) {
needs.user({ staff: false, admin: false, moderator: false });
needs.user({ admin: false, moderator: false });
needs.settings({
allow_uncategorized_topics: false,
});