mirror of https://github.com/zulip/zulip.git
Unbreak sending invites from the first user.
The bug caused the wrong verb to be used, resulting in a 405. (imported from commit f9ad42e4a09e3a0dbd98bf4faa9ba57325d733c5)
This commit is contained in:
parent
e9dc149340
commit
02d8f2f0f0
|
@ -189,7 +189,7 @@ $(document).ready(function () {
|
|||
$('#submit_invitation').text("Inviting …");
|
||||
|
||||
$.ajax({
|
||||
method: 'POST',
|
||||
type: 'POST',
|
||||
dataType: 'json',
|
||||
url: '/json/bulk_invite_users',
|
||||
data: { invitee_emails: JSON.stringify(get_invitee_emails()),
|
||||
|
|
Loading…
Reference in New Issue