diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3ec320f67..c0efb687d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -26,11 +26,37 @@ This release adds the following new features:
- [Updated swimlane (restore and changed title) and board (changed title) webhooks](https://github.com/wekan/wekan/pull/5205).
Thanks to gustavengstrom.
+- When user logins, "Automatically add user with the domain name" (at Admin Panel / Organizations) to Organization.
+ [Part 1](https://github.com/wekan/wekan/commit/6e2f84673e98abec07a10c843ab83bed50774b35),
+ [Part 2](https://github.com/wekan/wekan/commit/9bc63669933bd763930add22ad7d05d89566d3ee).
+ Thanks to xet7.
+
+and adds the following updates:
+
+- [Added governance.md](https://github.com/wekan/wekan/commit/2b1d2222cc900e8c815c30a4d07c897e30ba3636).
+ Thanks to xet7.
+- Updated contributing.md.
+ [Part 1](https://github.com/wekan/wekan/commit/d840cb3be7b1788a4dbdd09ef45690afcf6b3dd4),
+ [Part 2](https://github.com/wekan/wekan/commit/e91e68c48c6392814fbc1362b7ae15ead34e7e47),
+ [Part 3](https://github.com/wekan/wekan/commit/026236edc962a8fc3863b9a4f7dc1d1f5dec3b5c),
+ [Part 4](https://github.com/wekan/wekan/commit/59874d16b9cf95ff05d92dd4d3bbdcb42fd37a94).
+- [Updated security.md](https://github.com/wekan/wekan/commit/f047c6da295c4ab5ddc6d4d0a8137f419d8704d5).
+- Updated code of conduct.md.
+ [Part 1](https://github.com/wekan/wekan/commit/c4293ecd95b9faec846060bcbcb8362cb58a54e6),
+ [Part 2](https://github.com/wekan/wekan/commit/f512047ac6439e53f92359f45ab907c629d225a9).
and fixes the following bugs:
- [Removed console.log](https://github.com/wekan/wekan/commit/0c54c1540c494bb7ffeb61a89cbc9a79c8f05d19).
Thanks to xet7.
+- [Fix typos at oidc_server.js](https://github.com/wekan/wekan/commit/cd51ad75086950f29adf245b6d6c0b43e69da171).
+ Thanks to xet7.
+- [Fix to not anymore show confusing Organization Id and Team Id fields at Admin Panel / People / People / Edit user](https://github.com/wekan/wekan/commit/6405c35bc08fc73657a4111c6fd72a8bd72ded70).
+ Thanks to xet7.
+- [Fix to not anymore require website for Organization and Team](https://github.com/wekan/wekan/commit/d4d6a5f96d88a89eb47ee56ba9857e859203a53c).
+ Thanks to xet7.
+- [Snap: Disable apparmor="DENIED" in syslog](https://github.com/wekan/wekan/commit/2048975e92152bb1c397b61fc2fd0a8124fade58).
+ Thanks to diegargon, webenefits and xet7.
Thanks to above GitHub users for their contributions and translators for their translations.
diff --git a/client/components/settings/peopleBody.jade b/client/components/settings/peopleBody.jade
index e81ed2aca..2e4fe5021 100644
--- a/client/components/settings/peopleBody.jade
+++ b/client/components/settings/peopleBody.jade
@@ -78,6 +78,7 @@ template(name="orgGeneral")
th {{_ 'displayName'}}
th {{_ 'description'}}
th {{_ 'shortName'}}
+ th {{_ 'autoAddUsersWithDomainName'}}
th {{_ 'website'}}
th {{_ 'createdAt'}}
th {{_ 'active'}}
@@ -159,6 +160,10 @@ template(name="orgRow")
td {{ orgData.orgShortName }}
else
td {{ orgData.orgShortName }}
+ if orgData.orgIsActive
+ td {{ orgData.orgAutoAddUsersWithDomainName }}
+ else
+ td {{ orgData.orgAutoAddUsersWithDomainName }}
if orgData.orgIsActive
td {{ orgData.orgWebsite }}
else
@@ -307,9 +312,12 @@ template(name="editOrgPopup")
label
| {{_ 'shortName'}}
input.js-orgShortName(type="text" value=org.orgShortName required)
+ label
+ | {{_ 'autoAddUsersWithDomainName'}}
+ input.js-orgAutoAddUsersWithDomainName(type="text" value=org.orgAutoAddUsersWithDomainName)
label
| {{_ 'website'}}
- input.js-orgWebsite(type="text" value=org.orgWebsite required)
+ input.js-orgWebsite(type="text" value=org.orgWebsite)
label
| {{_ 'active'}}
select.select-active.js-org-isactive
@@ -335,7 +343,7 @@ template(name="editTeamPopup")
input.js-teamShortName(type="text" value=team.teamShortName required)
label
| {{_ 'website'}}
- input.js-teamWebsite(type="text" value=team.teamWebsite required)
+ input.js-teamWebsite(type="text" value=team.teamWebsite)
label
| {{_ 'active'}}
select.select-active.js-team-isactive
@@ -405,7 +413,7 @@ template(name="editUserPopup")
each value in orgsDatas
option(value="{{value._id}}") {{value.orgDisplayName}}
input#jsUserOrgsInPut.js-userOrgs(type="text" value=user.orgsUserBelongs, disabled)
- input#jsUserOrgIdsInPut.js-userOrgIds.hide(type="text" value=user.orgIdsUserBelongs)
+ input#jsUserOrgIdsInPut.js-userOrgIds.hide(type="hidden" value=user.orgIdsUserBelongs)
label
| {{_ 'teams'}}
i.fa.fa-plus-square#addUserTeam
@@ -415,7 +423,7 @@ template(name="editUserPopup")
each value in teamsDatas
option(value="{{value._id}}") {{_ value.teamDisplayName}}
input#jsUserTeamsInPut.js-userteams(type="text" value=user.teamsUserBelongs, disabled)
- input#jsUserTeamIdsInPut.js-userteamIds.hide(type="text" value=user.teamIdsUserBelongs)
+ input#jsUserTeamIdsInPut.js-userteamIds.hide(type="hidden" value=user.teamIdsUserBelongs)
hr
label
@@ -436,6 +444,9 @@ template(name="newOrgPopup")
label
| {{_ 'shortName'}}
input.js-orgShortName(type="text" value="" required)
+ label
+ | {{_ 'autoAddUsersWithDomainName'}}
+ input.js-orgAutoAddUsersWithDomainName(type="text" value="")
label
| {{_ 'website'}}
input.js-orgWebsite(type="text" value="" required)
@@ -462,7 +473,7 @@ template(name="newTeamPopup")
input.js-teamShortName(type="text" value="" required)
label
| {{_ 'website'}}
- input.js-teamWebsite(type="text" value="" required)
+ input.js-teamWebsite(type="text" value="")
label
| {{_ 'active'}}
select.select-active.js-team-isactive
diff --git a/client/components/settings/peopleBody.js b/client/components/settings/peopleBody.js
index b2c74e291..b80890c58 100644
--- a/client/components/settings/peopleBody.js
+++ b/client/components/settings/peopleBody.js
@@ -576,12 +576,14 @@ Template.editOrgPopup.events({
.value.trim();
const orgDesc = templateInstance.find('.js-orgDesc').value.trim();
const orgShortName = templateInstance.find('.js-orgShortName').value.trim();
+ const orgAutoAddUsersWithDomainName = templateInstance.find('.js-orgAutoAddUsersWithDomainName').value.trim();
const orgWebsite = templateInstance.find('.js-orgWebsite').value.trim();
const orgIsActive = templateInstance.find('.js-org-isactive').value.trim() == 'true';
const isChangeOrgDisplayName = orgDisplayName !== org.orgDisplayName;
const isChangeOrgDesc = orgDesc !== org.orgDesc;
const isChangeOrgShortName = orgShortName !== org.orgShortName;
+ const isChangeOrgAutoAddUsersWithDomainName = orgAutoAddUsersWithDomainName !== org.orgAutoAddUsersWithDomainName;
const isChangeOrgWebsite = orgWebsite !== org.orgWebsite;
const isChangeOrgIsActive = orgIsActive !== org.orgIsActive;
@@ -589,6 +591,7 @@ Template.editOrgPopup.events({
isChangeOrgDisplayName ||
isChangeOrgDesc ||
isChangeOrgShortName ||
+ isChangeOrgAutoAddUsersWithDomainName ||
isChangeOrgWebsite ||
isChangeOrgIsActive
) {
@@ -598,6 +601,7 @@ Template.editOrgPopup.events({
orgDisplayName,
orgDesc,
orgShortName,
+ orgAutoAddUsersWithDomainName,
orgWebsite,
orgIsActive,
);
@@ -920,6 +924,7 @@ Template.newOrgPopup.events({
.value.trim();
const orgDesc = templateInstance.find('.js-orgDesc').value.trim();
const orgShortName = templateInstance.find('.js-orgShortName').value.trim();
+ const orgAutoAddUsersWithDomainName = templateInstance.find('.js-orgAutoAddUsersWithDomainName').value.trim();
const orgWebsite = templateInstance.find('.js-orgWebsite').value.trim();
const orgIsActive =
templateInstance.find('.js-org-isactive').value.trim() == 'true';
@@ -929,6 +934,7 @@ Template.newOrgPopup.events({
orgDisplayName,
orgDesc,
orgShortName,
+ orgAutoAddUsersWithDomainName,
orgWebsite,
orgIsActive,
);
diff --git a/imports/i18n/data/af.i18n.json b/imports/i18n/data/af.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/af.i18n.json
+++ b/imports/i18n/data/af.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/af_ZA.i18n.json b/imports/i18n/data/af_ZA.i18n.json
index 77e75ef76..1ce879179 100644
--- a/imports/i18n/data/af_ZA.i18n.json
+++ b/imports/i18n/data/af_ZA.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ar-DZ.i18n.json b/imports/i18n/data/ar-DZ.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/ar-DZ.i18n.json
+++ b/imports/i18n/data/ar-DZ.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ar-EG.i18n.json b/imports/i18n/data/ar-EG.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/ar-EG.i18n.json
+++ b/imports/i18n/data/ar-EG.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ar.i18n.json b/imports/i18n/data/ar.i18n.json
index 30184fd7b..66cc886f9 100644
--- a/imports/i18n/data/ar.i18n.json
+++ b/imports/i18n/data/ar.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "موقع الكتروني",
"person": "شخص",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ary.i18n.json b/imports/i18n/data/ary.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/ary.i18n.json
+++ b/imports/i18n/data/ary.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ast-ES.i18n.json b/imports/i18n/data/ast-ES.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/ast-ES.i18n.json
+++ b/imports/i18n/data/ast-ES.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/az-AZ.i18n.json b/imports/i18n/data/az-AZ.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/az-AZ.i18n.json
+++ b/imports/i18n/data/az-AZ.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/az-LA.i18n.json b/imports/i18n/data/az-LA.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/az-LA.i18n.json
+++ b/imports/i18n/data/az-LA.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/az.i18n.json b/imports/i18n/data/az.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/az.i18n.json
+++ b/imports/i18n/data/az.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/bg.i18n.json b/imports/i18n/data/bg.i18n.json
index d52a0b0ed..87bc05a7c 100644
--- a/imports/i18n/data/bg.i18n.json
+++ b/imports/i18n/data/bg.i18n.json
@@ -962,6 +962,7 @@
"teams": "Екипи",
"displayName": "Име",
"shortName": "Кратко име",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Уебсайт",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/br.i18n.json b/imports/i18n/data/br.i18n.json
index 5e829d3ba..3915d27f6 100644
--- a/imports/i18n/data/br.i18n.json
+++ b/imports/i18n/data/br.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ca.i18n.json b/imports/i18n/data/ca.i18n.json
index 802a2ba57..83bde623e 100644
--- a/imports/i18n/data/ca.i18n.json
+++ b/imports/i18n/data/ca.i18n.json
@@ -962,6 +962,7 @@
"teams": "Equips",
"displayName": "Nom de visualització",
"shortName": "Nom curt",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Lloc web",
"person": "Persona",
"my-cards": "Les meves fitxes",
diff --git a/imports/i18n/data/ca_ES.i18n.json b/imports/i18n/data/ca_ES.i18n.json
index 2a587cfe6..78c381c47 100644
--- a/imports/i18n/data/ca_ES.i18n.json
+++ b/imports/i18n/data/ca_ES.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/cmn.i18n.json b/imports/i18n/data/cmn.i18n.json
index 61a5b0eee..a2118a2e2 100644
--- a/imports/i18n/data/cmn.i18n.json
+++ b/imports/i18n/data/cmn.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/cs-CZ.i18n.json b/imports/i18n/data/cs-CZ.i18n.json
index e8aae461a..c1ed6158b 100644
--- a/imports/i18n/data/cs-CZ.i18n.json
+++ b/imports/i18n/data/cs-CZ.i18n.json
@@ -962,6 +962,7 @@
"teams": "Týmy",
"displayName": "Zobrazovaný název",
"shortName": "Krátký název",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Webová stránka",
"person": "Osoba",
"my-cards": "Moje karty",
diff --git a/imports/i18n/data/cs.i18n.json b/imports/i18n/data/cs.i18n.json
index 8f7cf0a0b..f3502f587 100644
--- a/imports/i18n/data/cs.i18n.json
+++ b/imports/i18n/data/cs.i18n.json
@@ -962,6 +962,7 @@
"teams": "Týmy",
"displayName": "Zobrazovaný název",
"shortName": "Krátký název",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Webová stránka",
"person": "Osoba",
"my-cards": "Moje karty",
diff --git a/imports/i18n/data/cy-GB.i18n.json b/imports/i18n/data/cy-GB.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/cy-GB.i18n.json
+++ b/imports/i18n/data/cy-GB.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/cy.i18n.json b/imports/i18n/data/cy.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/cy.i18n.json
+++ b/imports/i18n/data/cy.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/da.i18n.json b/imports/i18n/data/da.i18n.json
index fdf5de2ef..2e1fdabe1 100644
--- a/imports/i18n/data/da.i18n.json
+++ b/imports/i18n/data/da.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/de-AT.i18n.json b/imports/i18n/data/de-AT.i18n.json
index 63565f9d4..a1410cf0e 100644
--- a/imports/i18n/data/de-AT.i18n.json
+++ b/imports/i18n/data/de-AT.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Anzeigename",
"shortName": "Kurzname",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Webseite",
"person": "Person",
"my-cards": "Meine Karten",
diff --git a/imports/i18n/data/de-CH.i18n.json b/imports/i18n/data/de-CH.i18n.json
index 3f0eaec0b..79b01d75b 100644
--- a/imports/i18n/data/de-CH.i18n.json
+++ b/imports/i18n/data/de-CH.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Anzeigename",
"shortName": "Kurzname",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Webseite",
"person": "Person",
"my-cards": "Meine Karten",
diff --git a/imports/i18n/data/de.i18n.json b/imports/i18n/data/de.i18n.json
index aef777616..77a472bf4 100644
--- a/imports/i18n/data/de.i18n.json
+++ b/imports/i18n/data/de.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Anzeigename",
"shortName": "Kurzname",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Webseite",
"person": "Person",
"my-cards": "Meine Karten",
diff --git a/imports/i18n/data/el-GR.i18n.json b/imports/i18n/data/el-GR.i18n.json
index fc88ddf41..72a1c18f3 100644
--- a/imports/i18n/data/el-GR.i18n.json
+++ b/imports/i18n/data/el-GR.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/el.i18n.json b/imports/i18n/data/el.i18n.json
index f9e193990..0105a9143 100644
--- a/imports/i18n/data/el.i18n.json
+++ b/imports/i18n/data/el.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/en-BR.i18n.json b/imports/i18n/data/en-BR.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/en-BR.i18n.json
+++ b/imports/i18n/data/en-BR.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/en-DE.i18n.json b/imports/i18n/data/en-DE.i18n.json
index 2a69a8e8b..90bcb1ed1 100644
--- a/imports/i18n/data/en-DE.i18n.json
+++ b/imports/i18n/data/en-DE.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/en-GB.i18n.json b/imports/i18n/data/en-GB.i18n.json
index 62faf7220..5b6adb530 100644
--- a/imports/i18n/data/en-GB.i18n.json
+++ b/imports/i18n/data/en-GB.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/en-IT.i18n.json b/imports/i18n/data/en-IT.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/en-IT.i18n.json
+++ b/imports/i18n/data/en-IT.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/en-MY.i18n.json b/imports/i18n/data/en-MY.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/en-MY.i18n.json
+++ b/imports/i18n/data/en-MY.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/en-YS.i18n.json b/imports/i18n/data/en-YS.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/en-YS.i18n.json
+++ b/imports/i18n/data/en-YS.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/en.i18n.json b/imports/i18n/data/en.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/en.i18n.json
+++ b/imports/i18n/data/en.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/en_ZA.i18n.json b/imports/i18n/data/en_ZA.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/en_ZA.i18n.json
+++ b/imports/i18n/data/en_ZA.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/eo.i18n.json b/imports/i18n/data/eo.i18n.json
index 4729916d0..4856b7928 100644
--- a/imports/i18n/data/eo.i18n.json
+++ b/imports/i18n/data/eo.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/es-AR.i18n.json b/imports/i18n/data/es-AR.i18n.json
index a7f1f414b..a3ac8696a 100644
--- a/imports/i18n/data/es-AR.i18n.json
+++ b/imports/i18n/data/es-AR.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/es-CL.i18n.json b/imports/i18n/data/es-CL.i18n.json
index f5d77a030..f57743ae3 100644
--- a/imports/i18n/data/es-CL.i18n.json
+++ b/imports/i18n/data/es-CL.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/es-LA.i18n.json b/imports/i18n/data/es-LA.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/es-LA.i18n.json
+++ b/imports/i18n/data/es-LA.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/es-MX.i18n.json b/imports/i18n/data/es-MX.i18n.json
index 4e41e2bc7..7c97d5731 100644
--- a/imports/i18n/data/es-MX.i18n.json
+++ b/imports/i18n/data/es-MX.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/es-PE.i18n.json b/imports/i18n/data/es-PE.i18n.json
index b4da0afd8..1fb5715c0 100644
--- a/imports/i18n/data/es-PE.i18n.json
+++ b/imports/i18n/data/es-PE.i18n.json
@@ -962,6 +962,7 @@
"teams": "Equipos",
"displayName": "Nombre para mostrar",
"shortName": "Nombre corto",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Sitio web",
"person": "Persona",
"my-cards": "Mis tarjetas",
diff --git a/imports/i18n/data/es-PY.i18n.json b/imports/i18n/data/es-PY.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/es-PY.i18n.json
+++ b/imports/i18n/data/es-PY.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/es.i18n.json b/imports/i18n/data/es.i18n.json
index db9e4667b..333cc339b 100644
--- a/imports/i18n/data/es.i18n.json
+++ b/imports/i18n/data/es.i18n.json
@@ -962,6 +962,7 @@
"teams": "Equipos",
"displayName": "Mostrar Nombre",
"shortName": "Nombre Corto",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Sitio web",
"person": "Persona",
"my-cards": "Mis Tarjetas",
diff --git a/imports/i18n/data/es_CO.i18n.json b/imports/i18n/data/es_CO.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/es_CO.i18n.json
+++ b/imports/i18n/data/es_CO.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/et-EE.i18n.json b/imports/i18n/data/et-EE.i18n.json
index d431eb672..58d9f761f 100644
--- a/imports/i18n/data/et-EE.i18n.json
+++ b/imports/i18n/data/et-EE.i18n.json
@@ -962,6 +962,7 @@
"teams": "Meeskonnad",
"displayName": "Kuva nimi",
"shortName": "Lühike nimi",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Veebileht",
"person": "Isik",
"my-cards": "Minu kaardid",
diff --git a/imports/i18n/data/eu.i18n.json b/imports/i18n/data/eu.i18n.json
index 531999218..2f945ee2e 100644
--- a/imports/i18n/data/eu.i18n.json
+++ b/imports/i18n/data/eu.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "Nire txartelak",
diff --git a/imports/i18n/data/fa-IR.i18n.json b/imports/i18n/data/fa-IR.i18n.json
index 2e125542e..91aae76ac 100644
--- a/imports/i18n/data/fa-IR.i18n.json
+++ b/imports/i18n/data/fa-IR.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/fa.i18n.json b/imports/i18n/data/fa.i18n.json
index 34ba3c6a2..8fee9eb35 100644
--- a/imports/i18n/data/fa.i18n.json
+++ b/imports/i18n/data/fa.i18n.json
@@ -962,6 +962,7 @@
"teams": "تیم ها",
"displayName": "نام نمایشی",
"shortName": "نام کوتاه",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "وبسایت",
"person": "فرد",
"my-cards": "کارت های من",
diff --git a/imports/i18n/data/fi.i18n.json b/imports/i18n/data/fi.i18n.json
index ba4e9c4a4..4974ceca8 100644
--- a/imports/i18n/data/fi.i18n.json
+++ b/imports/i18n/data/fi.i18n.json
@@ -962,6 +962,7 @@
"teams": "Tiimit",
"displayName": "Näyttönimi",
"shortName": "Lyhyt nimi",
+ "autoAddUsersWithDomainName": "Lisää automaattisesti käyttäjiä verkkotunnuksen nimellä",
"website": "Verkkosivusto",
"person": "Henkilö",
"my-cards": "Korttini",
diff --git a/imports/i18n/data/fr-CH.i18n.json b/imports/i18n/data/fr-CH.i18n.json
index cad3c5a4e..f0dfbcb0b 100644
--- a/imports/i18n/data/fr-CH.i18n.json
+++ b/imports/i18n/data/fr-CH.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/fr-FR.i18n.json b/imports/i18n/data/fr-FR.i18n.json
index 0b159147f..8eb23579d 100644
--- a/imports/i18n/data/fr-FR.i18n.json
+++ b/imports/i18n/data/fr-FR.i18n.json
@@ -962,6 +962,7 @@
"teams": "Équipes",
"displayName": "Nom d'Affichage",
"shortName": "Nom Court",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Site Web",
"person": "Personne",
"my-cards": "Mes Cartes",
diff --git a/imports/i18n/data/fr.i18n.json b/imports/i18n/data/fr.i18n.json
index b84e3ab2a..25f600960 100644
--- a/imports/i18n/data/fr.i18n.json
+++ b/imports/i18n/data/fr.i18n.json
@@ -962,6 +962,7 @@
"teams": "Équipes",
"displayName": "Nom d'Affichage",
"shortName": "Nom Court",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Site Web",
"person": "Personne",
"my-cards": "Mes Cartes",
diff --git a/imports/i18n/data/fy-NL.i18n.json b/imports/i18n/data/fy-NL.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/fy-NL.i18n.json
+++ b/imports/i18n/data/fy-NL.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/fy.i18n.json b/imports/i18n/data/fy.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/fy.i18n.json
+++ b/imports/i18n/data/fy.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/gl-ES.i18n.json b/imports/i18n/data/gl-ES.i18n.json
index 39a7a39a3..db54c9626 100644
--- a/imports/i18n/data/gl-ES.i18n.json
+++ b/imports/i18n/data/gl-ES.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/gl.i18n.json b/imports/i18n/data/gl.i18n.json
index 60aa3c448..883e77d2c 100644
--- a/imports/i18n/data/gl.i18n.json
+++ b/imports/i18n/data/gl.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/gu-IN.i18n.json b/imports/i18n/data/gu-IN.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/gu-IN.i18n.json
+++ b/imports/i18n/data/gu-IN.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/he-IL.i18n.json b/imports/i18n/data/he-IL.i18n.json
index f229e4189..952553a36 100644
--- a/imports/i18n/data/he-IL.i18n.json
+++ b/imports/i18n/data/he-IL.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/he.i18n.json b/imports/i18n/data/he.i18n.json
index fdb39507c..65379855b 100644
--- a/imports/i18n/data/he.i18n.json
+++ b/imports/i18n/data/he.i18n.json
@@ -962,6 +962,7 @@
"teams": "צוותים",
"displayName": "שם התצוגה",
"shortName": "שם קצר",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "אתר",
"person": "איש/ה",
"my-cards": "הכרטיסים שלי",
diff --git a/imports/i18n/data/hi-IN.i18n.json b/imports/i18n/data/hi-IN.i18n.json
index 5668db426..e541a5c7e 100644
--- a/imports/i18n/data/hi-IN.i18n.json
+++ b/imports/i18n/data/hi-IN.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/hi.i18n.json b/imports/i18n/data/hi.i18n.json
index 658a97b2b..103dfea41 100644
--- a/imports/i18n/data/hi.i18n.json
+++ b/imports/i18n/data/hi.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/hr.i18n.json b/imports/i18n/data/hr.i18n.json
index 249b334bb..656c7b0ab 100644
--- a/imports/i18n/data/hr.i18n.json
+++ b/imports/i18n/data/hr.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/hu.i18n.json b/imports/i18n/data/hu.i18n.json
index 025632738..e064f27ce 100644
--- a/imports/i18n/data/hu.i18n.json
+++ b/imports/i18n/data/hu.i18n.json
@@ -962,6 +962,7 @@
"teams": "Csoportok",
"displayName": "Megjelenítendő név",
"shortName": "Rövid név",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Weboldal",
"person": "Személy",
"my-cards": "Kártyáim",
diff --git a/imports/i18n/data/hy.i18n.json b/imports/i18n/data/hy.i18n.json
index 370813d5d..3381516f0 100644
--- a/imports/i18n/data/hy.i18n.json
+++ b/imports/i18n/data/hy.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/id.i18n.json b/imports/i18n/data/id.i18n.json
index 719e4ca1d..beb077cdd 100644
--- a/imports/i18n/data/id.i18n.json
+++ b/imports/i18n/data/id.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ig.i18n.json b/imports/i18n/data/ig.i18n.json
index 0dcdc3f99..6ab83e5bd 100644
--- a/imports/i18n/data/ig.i18n.json
+++ b/imports/i18n/data/ig.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/it.i18n.json b/imports/i18n/data/it.i18n.json
index c4f588f4b..eb183724b 100644
--- a/imports/i18n/data/it.i18n.json
+++ b/imports/i18n/data/it.i18n.json
@@ -962,6 +962,7 @@
"teams": "Team",
"displayName": "Nome da visualizzare",
"shortName": "Nome abbreviato",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Sito web",
"person": "Persona",
"my-cards": "Le mie schede",
diff --git a/imports/i18n/data/ja-HI.i18n.json b/imports/i18n/data/ja-HI.i18n.json
index cb3df8697..5da68e660 100644
--- a/imports/i18n/data/ja-HI.i18n.json
+++ b/imports/i18n/data/ja-HI.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ja.i18n.json b/imports/i18n/data/ja.i18n.json
index df4873fa6..5cda6355d 100644
--- a/imports/i18n/data/ja.i18n.json
+++ b/imports/i18n/data/ja.i18n.json
@@ -962,6 +962,7 @@
"teams": "チーム",
"displayName": "表示名",
"shortName": "短縮名",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "ウェブサイト",
"person": "Person",
"my-cards": "自分のカード",
diff --git a/imports/i18n/data/ka.i18n.json b/imports/i18n/data/ka.i18n.json
index fd1981938..babae59ba 100644
--- a/imports/i18n/data/ka.i18n.json
+++ b/imports/i18n/data/ka.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/km.i18n.json b/imports/i18n/data/km.i18n.json
index 9d4cff558..7ed657dea 100644
--- a/imports/i18n/data/km.i18n.json
+++ b/imports/i18n/data/km.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ko-KR.i18n.json b/imports/i18n/data/ko-KR.i18n.json
index 50db62407..95597e08b 100644
--- a/imports/i18n/data/ko-KR.i18n.json
+++ b/imports/i18n/data/ko-KR.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ko.i18n.json b/imports/i18n/data/ko.i18n.json
index 1ebf8c0ab..1930868fb 100644
--- a/imports/i18n/data/ko.i18n.json
+++ b/imports/i18n/data/ko.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/lt.i18n.json b/imports/i18n/data/lt.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/lt.i18n.json
+++ b/imports/i18n/data/lt.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/lv.i18n.json b/imports/i18n/data/lv.i18n.json
index ec535c09b..cb97b289f 100644
--- a/imports/i18n/data/lv.i18n.json
+++ b/imports/i18n/data/lv.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/mk.i18n.json b/imports/i18n/data/mk.i18n.json
index 3bee44c9a..0e53be475 100644
--- a/imports/i18n/data/mk.i18n.json
+++ b/imports/i18n/data/mk.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/mn.i18n.json b/imports/i18n/data/mn.i18n.json
index 8d34d5940..78ae3b428 100644
--- a/imports/i18n/data/mn.i18n.json
+++ b/imports/i18n/data/mn.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ms-MY.i18n.json b/imports/i18n/data/ms-MY.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/ms-MY.i18n.json
+++ b/imports/i18n/data/ms-MY.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ms.i18n.json b/imports/i18n/data/ms.i18n.json
index 0d89fd6b8..b98977fae 100644
--- a/imports/i18n/data/ms.i18n.json
+++ b/imports/i18n/data/ms.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/nb.i18n.json b/imports/i18n/data/nb.i18n.json
index bc9e7cc23..303c7f8ba 100644
--- a/imports/i18n/data/nb.i18n.json
+++ b/imports/i18n/data/nb.i18n.json
@@ -962,6 +962,7 @@
"teams": "Team",
"displayName": "Visningsnavn",
"shortName": "Initialer",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Nettsted",
"person": "Person",
"my-cards": "Mine Kort",
diff --git a/imports/i18n/data/nl-NL.i18n.json b/imports/i18n/data/nl-NL.i18n.json
index 4075d676a..23ca1be9c 100644
--- a/imports/i18n/data/nl-NL.i18n.json
+++ b/imports/i18n/data/nl-NL.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Schermnaam",
"shortName": "Korte naam",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Persoon",
"my-cards": "Mijn kaarten",
diff --git a/imports/i18n/data/nl.i18n.json b/imports/i18n/data/nl.i18n.json
index ef3e17f95..d9c3c3b10 100644
--- a/imports/i18n/data/nl.i18n.json
+++ b/imports/i18n/data/nl.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Schermnaam",
"shortName": "Korte naam",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Persoon",
"my-cards": "Mijn kaarten",
diff --git a/imports/i18n/data/oc.i18n.json b/imports/i18n/data/oc.i18n.json
index cc6c4479c..43246322f 100644
--- a/imports/i18n/data/oc.i18n.json
+++ b/imports/i18n/data/oc.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/pa.i18n.json b/imports/i18n/data/pa.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/pa.i18n.json
+++ b/imports/i18n/data/pa.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/pl-PL.i18n.json b/imports/i18n/data/pl-PL.i18n.json
index 26ad71677..3a94bd258 100644
--- a/imports/i18n/data/pl-PL.i18n.json
+++ b/imports/i18n/data/pl-PL.i18n.json
@@ -962,6 +962,7 @@
"teams": "Zespoły",
"displayName": "Nazwa wyświetlana",
"shortName": "Nazwa skrócona",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Strona internetowa",
"person": "Osoba",
"my-cards": "Moje karty",
diff --git a/imports/i18n/data/pl.i18n.json b/imports/i18n/data/pl.i18n.json
index 7fc6dbc32..412a5a915 100644
--- a/imports/i18n/data/pl.i18n.json
+++ b/imports/i18n/data/pl.i18n.json
@@ -962,6 +962,7 @@
"teams": "Zespoły",
"displayName": "Nazwa wyświetlana",
"shortName": "Nazwa skrócona",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Strona internetowa",
"person": "Osoba",
"my-cards": "Moje karty",
diff --git a/imports/i18n/data/pt-BR.i18n.json b/imports/i18n/data/pt-BR.i18n.json
index 2bb4bfb68..452891d45 100644
--- a/imports/i18n/data/pt-BR.i18n.json
+++ b/imports/i18n/data/pt-BR.i18n.json
@@ -962,6 +962,7 @@
"teams": "Times",
"displayName": "Nome em exibição",
"shortName": "Nome curto",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Pessoa",
"my-cards": "Meus Cartões",
diff --git a/imports/i18n/data/pt.i18n.json b/imports/i18n/data/pt.i18n.json
index 27d52677d..aa5e0f275 100644
--- a/imports/i18n/data/pt.i18n.json
+++ b/imports/i18n/data/pt.i18n.json
@@ -962,6 +962,7 @@
"teams": "Equipas",
"displayName": "Nome a mostrar",
"shortName": "Nome Curto",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Pessoa",
"my-cards": "Meus Cartões",
diff --git a/imports/i18n/data/pt_PT.i18n.json b/imports/i18n/data/pt_PT.i18n.json
index 56a42aa70..f7e981001 100644
--- a/imports/i18n/data/pt_PT.i18n.json
+++ b/imports/i18n/data/pt_PT.i18n.json
@@ -962,6 +962,7 @@
"teams": "Equipas",
"displayName": "Nome a mostrar",
"shortName": "Nome Curto",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Pessoa",
"my-cards": "Meus Cartões",
diff --git a/imports/i18n/data/ro-RO.i18n.json b/imports/i18n/data/ro-RO.i18n.json
index 08d7da374..1740a92ca 100644
--- a/imports/i18n/data/ro-RO.i18n.json
+++ b/imports/i18n/data/ro-RO.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ro.i18n.json b/imports/i18n/data/ro.i18n.json
index 74754715a..ccbe4a65f 100644
--- a/imports/i18n/data/ro.i18n.json
+++ b/imports/i18n/data/ro.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ru-UA.i18n.json b/imports/i18n/data/ru-UA.i18n.json
index 2951f6e2c..98ae98357 100644
--- a/imports/i18n/data/ru-UA.i18n.json
+++ b/imports/i18n/data/ru-UA.i18n.json
@@ -962,6 +962,7 @@
"teams": "Команды",
"displayName": "Отображаемое название",
"shortName": "Короткое название",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Вебсайт",
"person": "Представитель",
"my-cards": "Мои карточки",
diff --git a/imports/i18n/data/ru.i18n.json b/imports/i18n/data/ru.i18n.json
index de5acf648..33f158b2b 100644
--- a/imports/i18n/data/ru.i18n.json
+++ b/imports/i18n/data/ru.i18n.json
@@ -962,6 +962,7 @@
"teams": "Команды",
"displayName": "Отображаемое название",
"shortName": "Короткое название",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Вебсайт",
"person": "Представитель",
"my-cards": "Мои карточки",
diff --git a/imports/i18n/data/sk.i18n.json b/imports/i18n/data/sk.i18n.json
index a271715ad..a11802e57 100644
--- a/imports/i18n/data/sk.i18n.json
+++ b/imports/i18n/data/sk.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/sl.i18n.json b/imports/i18n/data/sl.i18n.json
index ac118f7f0..55dad4743 100644
--- a/imports/i18n/data/sl.i18n.json
+++ b/imports/i18n/data/sl.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/sr.i18n.json b/imports/i18n/data/sr.i18n.json
index 13998cdf0..aad9df24f 100644
--- a/imports/i18n/data/sr.i18n.json
+++ b/imports/i18n/data/sr.i18n.json
@@ -962,6 +962,7 @@
"teams": "Тимови",
"displayName": "Име које се приказује",
"shortName": "Скраћеница",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Интернет страница",
"person": "Особа",
"my-cards": "Моја задужења",
diff --git a/imports/i18n/data/sv.i18n.json b/imports/i18n/data/sv.i18n.json
index 94d813584..65c0428a3 100644
--- a/imports/i18n/data/sv.i18n.json
+++ b/imports/i18n/data/sv.i18n.json
@@ -962,6 +962,7 @@
"teams": "Grupper",
"displayName": "Visningsnamn",
"shortName": "Kortnamn",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Webbsida",
"person": "Person",
"my-cards": "Mina kort",
diff --git a/imports/i18n/data/sw.i18n.json b/imports/i18n/data/sw.i18n.json
index 6c53c332d..06525741b 100644
--- a/imports/i18n/data/sw.i18n.json
+++ b/imports/i18n/data/sw.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ta.i18n.json b/imports/i18n/data/ta.i18n.json
index 4135288e4..f2256c66f 100644
--- a/imports/i18n/data/ta.i18n.json
+++ b/imports/i18n/data/ta.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/th.i18n.json b/imports/i18n/data/th.i18n.json
index 119964dba..c22f152d0 100644
--- a/imports/i18n/data/th.i18n.json
+++ b/imports/i18n/data/th.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/tlh.i18n.json b/imports/i18n/data/tlh.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/tlh.i18n.json
+++ b/imports/i18n/data/tlh.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/tr.i18n.json b/imports/i18n/data/tr.i18n.json
index 2b590fd8e..da71bc62a 100644
--- a/imports/i18n/data/tr.i18n.json
+++ b/imports/i18n/data/tr.i18n.json
@@ -962,6 +962,7 @@
"teams": "Takımlar",
"displayName": "Görünen İsim",
"shortName": "Kısa ad",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Web Site",
"person": "Kişi",
"my-cards": "Kartlarım",
diff --git a/imports/i18n/data/ug.i18n.json b/imports/i18n/data/ug.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/ug.i18n.json
+++ b/imports/i18n/data/ug.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/uk-UA.i18n.json b/imports/i18n/data/uk-UA.i18n.json
index ab6c519cc..0a79aedf3 100644
--- a/imports/i18n/data/uk-UA.i18n.json
+++ b/imports/i18n/data/uk-UA.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/uk.i18n.json b/imports/i18n/data/uk.i18n.json
index 40895d4b7..b3ec67b58 100644
--- a/imports/i18n/data/uk.i18n.json
+++ b/imports/i18n/data/uk.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/uz-AR.i18n.json b/imports/i18n/data/uz-AR.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/uz-AR.i18n.json
+++ b/imports/i18n/data/uz-AR.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/uz-LA.i18n.json b/imports/i18n/data/uz-LA.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/uz-LA.i18n.json
+++ b/imports/i18n/data/uz-LA.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/uz-UZ.i18n.json b/imports/i18n/data/uz-UZ.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/uz-UZ.i18n.json
+++ b/imports/i18n/data/uz-UZ.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/uz.i18n.json b/imports/i18n/data/uz.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/uz.i18n.json
+++ b/imports/i18n/data/uz.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ve-CC.i18n.json b/imports/i18n/data/ve-CC.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/ve-CC.i18n.json
+++ b/imports/i18n/data/ve-CC.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ve-PP.i18n.json b/imports/i18n/data/ve-PP.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/ve-PP.i18n.json
+++ b/imports/i18n/data/ve-PP.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/ve.i18n.json b/imports/i18n/data/ve.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/ve.i18n.json
+++ b/imports/i18n/data/ve.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/vi-VN.i18n.json b/imports/i18n/data/vi-VN.i18n.json
index 4dd17d9b9..171be6969 100644
--- a/imports/i18n/data/vi-VN.i18n.json
+++ b/imports/i18n/data/vi-VN.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/vi.i18n.json b/imports/i18n/data/vi.i18n.json
index 0232b1d7b..0d2b2a546 100644
--- a/imports/i18n/data/vi.i18n.json
+++ b/imports/i18n/data/vi.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Tên Hiển Thị",
"shortName": "Tên ngắn",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Cá nhân",
"my-cards": "Thẻ của tôi",
diff --git a/imports/i18n/data/vl-SS.i18n.json b/imports/i18n/data/vl-SS.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/vl-SS.i18n.json
+++ b/imports/i18n/data/vl-SS.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/vo.i18n.json b/imports/i18n/data/vo.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/vo.i18n.json
+++ b/imports/i18n/data/vo.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/wa-RR.i18n.json b/imports/i18n/data/wa-RR.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/wa-RR.i18n.json
+++ b/imports/i18n/data/wa-RR.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/wa.i18n.json b/imports/i18n/data/wa.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/wa.i18n.json
+++ b/imports/i18n/data/wa.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/wo.i18n.json b/imports/i18n/data/wo.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/wo.i18n.json
+++ b/imports/i18n/data/wo.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/xh.i18n.json b/imports/i18n/data/xh.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/xh.i18n.json
+++ b/imports/i18n/data/xh.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/yi.i18n.json b/imports/i18n/data/yi.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/yi.i18n.json
+++ b/imports/i18n/data/yi.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/yo.i18n.json b/imports/i18n/data/yo.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/yo.i18n.json
+++ b/imports/i18n/data/yo.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/yue_CN.i18n.json b/imports/i18n/data/yue_CN.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/yue_CN.i18n.json
+++ b/imports/i18n/data/yue_CN.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/zgh.i18n.json b/imports/i18n/data/zgh.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/zgh.i18n.json
+++ b/imports/i18n/data/zgh.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/zh-CN.i18n.json b/imports/i18n/data/zh-CN.i18n.json
index eaadb1291..3ac828df6 100644
--- a/imports/i18n/data/zh-CN.i18n.json
+++ b/imports/i18n/data/zh-CN.i18n.json
@@ -962,6 +962,7 @@
"teams": "团队",
"displayName": "显示名称",
"shortName": "简称",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "网站",
"person": "人员",
"my-cards": "我的卡片",
diff --git a/imports/i18n/data/zh-GB.i18n.json b/imports/i18n/data/zh-GB.i18n.json
index 95cab4369..f60c72eae 100644
--- a/imports/i18n/data/zh-GB.i18n.json
+++ b/imports/i18n/data/zh-GB.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/zh-HK.i18n.json b/imports/i18n/data/zh-HK.i18n.json
index e5675b547..97acd957e 100644
--- a/imports/i18n/data/zh-HK.i18n.json
+++ b/imports/i18n/data/zh-HK.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/zh-Hans.i18n.json b/imports/i18n/data/zh-Hans.i18n.json
index 73e335d38..49e06f2dd 100644
--- a/imports/i18n/data/zh-Hans.i18n.json
+++ b/imports/i18n/data/zh-Hans.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/zh-Hant.i18n.json b/imports/i18n/data/zh-Hant.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/zh-Hant.i18n.json
+++ b/imports/i18n/data/zh-Hant.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/zh-TW.i18n.json b/imports/i18n/data/zh-TW.i18n.json
index 21aca4f6f..560c090a5 100644
--- a/imports/i18n/data/zh-TW.i18n.json
+++ b/imports/i18n/data/zh-TW.i18n.json
@@ -962,6 +962,7 @@
"teams": "團隊",
"displayName": "顯示用名稱",
"shortName": "排序用名稱",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "網站",
"person": "人物",
"my-cards": "我的卡片",
diff --git a/imports/i18n/data/zh.i18n.json b/imports/i18n/data/zh.i18n.json
index cb6aab33d..a19c5ad95 100644
--- a/imports/i18n/data/zh.i18n.json
+++ b/imports/i18n/data/zh.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/zu-ZA.i18n.json b/imports/i18n/data/zu-ZA.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/zu-ZA.i18n.json
+++ b/imports/i18n/data/zu-ZA.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/imports/i18n/data/zu.i18n.json b/imports/i18n/data/zu.i18n.json
index 68121aefa..5c932b5ef 100644
--- a/imports/i18n/data/zu.i18n.json
+++ b/imports/i18n/data/zu.i18n.json
@@ -962,6 +962,7 @@
"teams": "Teams",
"displayName": "Display Name",
"shortName": "Short Name",
+ "autoAddUsersWithDomainName": "Automatically add users with the domain name",
"website": "Website",
"person": "Person",
"my-cards": "My Cards",
diff --git a/models/org.js b/models/org.js
index b389d8a10..17c0b1981 100644
--- a/models/org.js
+++ b/models/org.js
@@ -30,6 +30,14 @@ Org.attachSchema(
optional: true,
max: 255,
},
+ orgAutoAddUsersWithDomainName: {
+ /**
+ * automatically add users with domain name
+ */
+ type: String,
+ optional: true,
+ max: 255,
+ },
orgWebsite: {
/**
* website of the organization
@@ -115,6 +123,7 @@ if (Meteor.isServer) {
orgDisplayName,
orgDesc,
orgShortName,
+ orgAutoAddUsersWithDomainName,
orgWebsite,
orgIsActive,
) {
@@ -122,6 +131,7 @@ if (Meteor.isServer) {
check(orgDisplayName, String);
check(orgDesc, String);
check(orgShortName, String);
+ check(orgAutoAddUsersWithDomainName, String);
check(orgWebsite, String);
check(orgIsActive, Boolean);
@@ -133,6 +143,7 @@ if (Meteor.isServer) {
orgDisplayName,
orgDesc,
orgShortName,
+ orgAutoAddUsersWithDomainName,
orgWebsite,
orgIsActive,
});
@@ -143,12 +154,14 @@ if (Meteor.isServer) {
orgDisplayName,
orgDesc,
orgShortName,
+ orgAutoAddUsersWithDomainName,
orgWebsite,
orgIsActive,
) {
check(orgDisplayName, String);
check(orgDesc, String);
check(orgShortName, String);
+ check(orgAutoAddUsersWithDomainName, String);
check(orgWebsite, String);
check(orgIsActive, Boolean);
@@ -160,6 +173,7 @@ if (Meteor.isServer) {
orgDisplayName,
orgDesc,
orgShortName,
+ orgAutoAddUsersWithDomainName,
orgWebsite,
orgIsActive,
});
@@ -196,6 +210,16 @@ if (Meteor.isServer) {
}
},
+ setAutoAddUsersWithDomainName(org, orgAutoAddUsersWithDomainName) {
+ if (ReactiveCache.getCurrentUser()?.isAdmin) {
+ check(org, Object);
+ check(orgAutoAddUsersWithDomainName, String);
+ Org.update(org, {
+ $set: { orgAutoAddUsersWithDomainName: orgAutoAddUsersWithDomainName },
+ });
+ }
+ },
+
setOrgIsActive(org, orgIsActive) {
if (ReactiveCache.getCurrentUser()?.isAdmin) {
check(org, Object);
@@ -210,6 +234,7 @@ if (Meteor.isServer) {
orgDisplayName,
orgDesc,
orgShortName,
+ orgAutoAddUsersWithDomainName,
orgWebsite,
orgIsActive,
) {
@@ -217,6 +242,7 @@ if (Meteor.isServer) {
check(orgDisplayName, String);
check(orgDesc, String);
check(orgShortName, String);
+ check(orgAutoAddUsersWithDomainName, String);
check(orgWebsite, String);
check(orgIsActive, Boolean);
Org.update(org, {
@@ -224,6 +250,7 @@ if (Meteor.isServer) {
orgDisplayName: orgDisplayName,
orgDesc: orgDesc,
orgShortName: orgShortName,
+ orgAutoAddUsersWithDomainName: orgAutoAddUsersWithDomainName,
orgWebsite: orgWebsite,
orgIsActive: orgIsActive,
},
@@ -235,6 +262,7 @@ if (Meteor.isServer) {
orgDisplayName,
orgDesc,
orgShortName,
+ orgAutoAddUsersWithDomainName,
orgWebsite,
orgIsActive,
) {
@@ -243,6 +271,7 @@ if (Meteor.isServer) {
check(orgDisplayName, String);
check(orgDesc, String);
check(orgShortName, String);
+ check(orgAutoAddUsersWithDomainName, String);
check(orgWebsite, String);
check(orgIsActive, Boolean);
Org.update(org, {
@@ -250,6 +279,7 @@ if (Meteor.isServer) {
orgDisplayName: orgDisplayName,
orgDesc: orgDesc,
orgShortName: orgShortName,
+ orgAutoAddUsersWithDomainName: orgAutoAddUsersWithDomainName,
orgWebsite: orgWebsite,
orgIsActive: orgIsActive,
},
diff --git a/server/publications/org.js b/server/publications/org.js
index 4bad11c99..adf7f33d0 100644
--- a/server/publications/org.js
+++ b/server/publications/org.js
@@ -16,6 +16,7 @@ Meteor.publish('org', function(query, limit) {
orgDisplayName: 1,
orgDesc: 1,
orgShortName: 1,
+ orgAutoAddUsersWithDomainName: 1,
orgWebsite: 1,
orgTeams: 1,
createdAt: 1,
diff --git a/snap-src/bin/mongodb-control b/snap-src/bin/mongodb-control
index ffc964f26..d4ecdea65 100755
--- a/snap-src/bin/mongodb-control
+++ b/snap-src/bin/mongodb-control
@@ -77,6 +77,13 @@ fi
if [ -z "$MONGO_URL" ]; then
+ # Disable MongoDB telemetry and free monitoring
+ mongo --eval "disableTelemetry()"
+ mongo --eval "db.disableFreeMonitoring()"
+ # Snap: Disable apparmor="DENIED" at syslog
+ # https://github.com/wekan/wekan/issues/4855
+ mongo wekan --eval 'db.adminCommand({ setParameter: 1, diagnosticDataCollectionEnabled: false});' $BIND_OPTIONS
+
# start mongo deamon
BIND_OPTIONS=""
if [ "nill" != "$MONGODB_BIND_UNIX_SOCKET" ] && [ "x" != "x${MONGODB_BIND_UNIX_SOCKET}" ]; then
@@ -114,6 +121,13 @@ if [ -z "$MONGO_URL" ]; then
else
+ # Disable MongoDB telemetry and free monitoring
+ mongo --eval "disableTelemetry()"
+ mongo --eval "db.disableFreeMonitoring()"
+ # Snap: Disable apparmor="DENIED" at syslog
+ # https://github.com/wekan/wekan/issues/4855
+ mongo wekan --eval 'db.adminCommand({ setParameter: 1, diagnosticDataCollectionEnabled: false});' $BIND_OPTIONS
+
if [ "syslog" == "${MONGO_LOG_DESTINATION}" ]; then
echo "Sending mongodb logs to syslog"
mongod --dbpath $SNAP_COMMON --syslog --journal $MONGO_URL --quiet
@@ -129,9 +143,6 @@ else
mongod --dbpath $SNAP_COMMON --logpath /dev/null --journal $MONGO_URL --quiet
fi
- # Disable MongoDB telemetry and free monitoring
- mongo --eval "disableTelemetry()"
- mongo --eval "db.disableFreeMonitoring()"
# Drop indexes on database upgrade, when starting MongoDB
#mongo wekan --eval "db.getCollectionNames().forEach(function(col_name) { var coll = db.getCollection(col_name); coll.dropIndexes(); });" $BIND_OPTIONS
mongo wekan --eval 'db.adminCommand({ setFeatureCompatibilityVersion: "4.2" });' $BIND_OPTIONS