mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 13:07:17 -04:00
Merge pull request #2263 from inoio/devel
make emails for invitations lowercase, compatible with AccountsTemplates
This commit is contained in:
commit
bf3ec060f7
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ BlazeComponent.extendComponent({
|
|||
},
|
||||
|
||||
inviteThroughEmail() {
|
||||
const emails = $('#email-to-invite').val().trim().split('\n').join(',').split(',');
|
||||
const emails = $('#email-to-invite').val().toLowerCase().trim().split('\n').join(',').split(',');
|
||||
const boardsToInvite = [];
|
||||
$('.js-toggle-board-choose .materialCheckBox.is-checked').each(function () {
|
||||
boardsToInvite.push($(this).data('id'));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue