mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:23:43 +08:00
aa1fc01307
Enabling the moderators_manage_categories_and_groups site setting will allow moderator users to create/manage groups. * show New Group form to moderators * Allow moderators to update groups and read logs, where appropriate * Rename site setting from create -> manage * improved tests * Migration should rename old log entries * Log group changes, even if those changes mean you can no longer see the group * Slight reshuffle * RouteTo /g if they no longer have permissions to view group
89 lines
1.9 KiB
JavaScript
89 lines
1.9 KiB
JavaScript
import { acceptance, updateCurrentUser } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Managing Group Interaction Settings", {
|
|
loggedIn: true,
|
|
settings: {
|
|
email_in: true
|
|
}
|
|
});
|
|
|
|
QUnit.test("As an admin", async assert => {
|
|
updateCurrentUser({
|
|
moderator: false,
|
|
admin: true,
|
|
can_create_group: true
|
|
});
|
|
|
|
await visit("/g/alternative-group/manage/interaction");
|
|
|
|
assert.equal(
|
|
find(".groups-form-visibility-level").length,
|
|
1,
|
|
"it should display visibility level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-mentionable-level").length,
|
|
1,
|
|
"it should display mentionable level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-messageable-level").length,
|
|
1,
|
|
"it should display messageable level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-incoming-email").length,
|
|
1,
|
|
"it should display incoming email input"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-default-notification-level").length,
|
|
1,
|
|
"it should display default notification level input"
|
|
);
|
|
});
|
|
|
|
QUnit.test("As a group owner", async assert => {
|
|
updateCurrentUser({
|
|
moderator: false,
|
|
admin: false,
|
|
can_create_group: false
|
|
});
|
|
|
|
await visit("/g/discourse/manage/interaction");
|
|
|
|
assert.equal(
|
|
find(".groups-form-visibility-level").length,
|
|
0,
|
|
"it should not display visibility level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-mentionable-level").length,
|
|
1,
|
|
"it should display mentionable level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-messageable-level").length,
|
|
1,
|
|
"it should display messageable level selector"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-incoming-email").length,
|
|
0,
|
|
"it should not display incoming email input"
|
|
);
|
|
|
|
assert.equal(
|
|
find(".groups-form-default-notification-level").length,
|
|
1,
|
|
"it should display default notification level input"
|
|
);
|
|
});
|