mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 01:25:54 +08:00
bdfb370f19
allowEmails used to always be set to true and did not use can_invite_via_email, which checks for enable_local_logins. It was a problem because on sites with local logins disabled users were allowed to enter email addresses, but received a generic error "error inviting that user".
23 lines
682 B
JavaScript
23 lines
682 B
JavaScript
import EmberObject, { set } from "@ember/object";
|
|
import componentTest from "helpers/component-test";
|
|
|
|
moduleForComponent("invite-panel", { integration: true });
|
|
|
|
componentTest("can_invite_via_email", {
|
|
template: "{{invite-panel panel=panel}}",
|
|
|
|
beforeEach() {
|
|
set(this.currentUser, "details", { can_invite_via_email: true });
|
|
const inviteModel = JSON.parse(JSON.stringify(this.currentUser));
|
|
this.set("panel", {
|
|
id: "invite",
|
|
model: { inviteModel: EmberObject.create(inviteModel) },
|
|
});
|
|
},
|
|
|
|
async test(assert) {
|
|
await fillIn(".invite-user-input", "eviltrout@example.com");
|
|
assert.ok(find(".send-invite:disabled").length === 0);
|
|
},
|
|
});
|