From 832bd6187c892fdb6b9785bab3d8ac122da3fdd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20Engstr=C3=B6m?= Date: Tue, 14 Nov 2023 08:16:40 +0100 Subject: [PATCH 001/884] Added restore swimlane and swimlane title to webhooks --- models/swimlanes.js | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/models/swimlanes.js b/models/swimlanes.js index d9850b6a7..7c8cac595 100644 --- a/models/swimlanes.js +++ b/models/swimlanes.js @@ -371,14 +371,39 @@ if (Meteor.isServer) { }); }); - Swimlanes.after.update((userId, doc) => { - if (doc.archived) { + Swimlanes.after.update((userId, doc, fieldNames) => { + if (fieldNames.includes('title')) { + Activities.insert({ + userId, + type: 'swimlane', + activityType: 'changedSwimlaneTitle', + listId: doc._id, + boardId: doc.boardId, + // this preserves the name so that the activity can be useful after the + // list is deleted + title: doc.title, + }); + } else if (doc.archived) { Activities.insert({ userId, type: 'swimlane', activityType: 'archivedSwimlane', - swimlaneId: doc._id, + listId: doc._id, boardId: doc.boardId, + // this preserves the name so that the activity can be useful after the + // list is deleted + title: doc.title, + }); + } else if (fieldNames.includes('archived')) { + Activities.insert({ + userId, + type: 'swimlane', + activityType: 'restoredSwimlane', + listId: doc._id, + boardId: doc.boardId, + // this preserves the name so that the activity can be useful after the + // list is deleted + title: doc.title, }); } }); From 67835e34211095766569665ae6bb0612c360c2fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20Engstr=C3=B6m?= Date: Tue, 14 Nov 2023 09:49:10 +0100 Subject: [PATCH 002/884] Added change board title to available webhooks --- docker-compose.yml | 2 +- models/boards.js | 14 ++++++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 254f43df1..69738e6c1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -368,7 +368,7 @@ services: #----------------------------------------------------------------- # ==== OUTGOING WEBHOOKS ==== # What to send to Outgoing Webhook, or leave out. If commented out the default values will be: cardId,listId,oldListId,boardId,comment,user,card,commentId,swimlaneId,customerField,customFieldValue - #- WEBHOOKS_ATTRIBUTES=cardId,listId,oldListId,boardId,comment,user,card,commentId + #- WEBHOOKS_ATTRIBUTES=cardId,listId,oldListId,boardId,comment,user,card,board,list,swimlane,commentId #----------------------------------------------------------------- # ==== Debug OIDC OAuth2 etc ==== #- DEBUG=true diff --git a/models/boards.js b/models/boards.js index 833175f5e..0665c6abc 100644 --- a/models/boards.js +++ b/models/boards.js @@ -1845,7 +1845,6 @@ if (Meteor.isServer) { if (!_.contains(fieldNames, 'members')) { return; } - if (modifier.$set) { const boardId = doc._id; foreachRemovedMember(doc, modifier.$set, memberId => { @@ -1899,10 +1898,21 @@ if (Meteor.isServer) { // Add a new activity if we add or remove a member to the board Boards.after.update((userId, doc, fieldNames, modifier) => { + console.log('board',doc) + if (fieldNames.includes('title')) { + Activities.insert({ + userId, + type: 'board', + activityType: 'changedBoardTitle', + boardId: doc._id, + // this preserves the name so that the activity can be useful after the + // list is deleted + title: doc.title, + }); + } if (!_.contains(fieldNames, 'members')) { return; } - // Say hello to the new member if (modifier.$push && modifier.$push.members) { const memberId = modifier.$push.members.userId; From 0c54c1540c494bb7ffeb61a89cbc9a79c8f05d19 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 14 Nov 2023 05:42:03 -0500 Subject: [PATCH 003/884] Removed console.log. Thanks to xet7 ! --- models/boards.js | 1 - 1 file changed, 1 deletion(-) diff --git a/models/boards.js b/models/boards.js index 0665c6abc..819f982c8 100644 --- a/models/boards.js +++ b/models/boards.js @@ -1898,7 +1898,6 @@ if (Meteor.isServer) { // Add a new activity if we add or remove a member to the board Boards.after.update((userId, doc, fieldNames, modifier) => { - console.log('board',doc) if (fieldNames.includes('title')) { Activities.insert({ userId, From b6fdbbd2bbfe5719ccd412a3fc686d0171e7761f Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 14 Nov 2023 05:44:55 -0500 Subject: [PATCH 004/884] Updated ChangeLog. --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d1a9a434..3ec320f67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,20 @@ Note: [How to upgrade WeKan](https://github.com/wekan/wekan/issues/4585) +# Upcoming WeKan ® release + +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. + +and fixes the following bugs: + +- [Removed console.log](https://github.com/wekan/wekan/commit/0c54c1540c494bb7ffeb61a89cbc9a79c8f05d19). + Thanks to xet7. + +Thanks to above GitHub users for their contributions and translators for their translations. + # v7.18 2023-11-14 WeKan ® release This release adds the following new features: From 2b1d2222cc900e8c815c30a4d07c897e30ba3636 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 16 Nov 2023 15:09:29 +0200 Subject: [PATCH 005/884] Added governance. --- GOVERNANCE.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 GOVERNANCE.md diff --git a/GOVERNANCE.md b/GOVERNANCE.md new file mode 100644 index 000000000..c0d3fd6b8 --- /dev/null +++ b/GOVERNANCE.md @@ -0,0 +1,10 @@ +# Governance + +Anyone can send pull request to https://github.com/wekan/wekan/wiki/pulls , +if there is permission to add code to WeKan with MIT license. + +As maintainer, xet7 checks all pull requests and merges them. + +Only xet7 has write access to repo https://github.com/wekan/wekan + + From d840cb3be7b1788a4dbdd09ef45690afcf6b3dd4 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 16 Nov 2023 15:23:29 +0200 Subject: [PATCH 006/884] Updated contributing. --- CONTRIBUTING.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3183645fe..831b9dfe1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,12 +62,10 @@ new release. ## About WeKan Organization https://github.com/wekan -xet7 rarely adds any new members to GitHub Organization, -because xet7 prefers to check PRs. +Only xet7 has write access to WeKan Organization. -For some repos (other than https://github.com/wekan/wekan ), -some contributors have direct commit access. +xet7 all PRs before merging. -Some contributors are mentioned at this outdated page: +There has been over 300 contributors to WeKan, newest stats at: -https://github.com/wekan/wekan/wiki/Team +https://www.openhub.net/p/wekan From e91e68c48c6392814fbc1362b7ae15ead34e7e47 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 16 Nov 2023 15:35:50 +0200 Subject: [PATCH 007/884] Updated contributing. --- CONTRIBUTING.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 831b9dfe1..8b368c249 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,23 @@ +## About money + +Not paid: + +- Money is not paid for these, everyone uses their own time at their own cost: + - Security reports, see [SECURITY.md](SECURITY.md) + - Pull requests + - xet7 checking pull requests +- Public Community Support + - https://github.com/wekan/wekan/issues + +Paid by customers of WeKan Team: + +- Commercial Support at https://wekan.team/commercial-support/ + - Support + - Private Chat + - Features + - Fixes + - Hosting + ## Contributing Security related For responsible security disclosure, please follow this process: From 026236edc962a8fc3863b9a4f7dc1d1f5dec3b5c Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 16 Nov 2023 15:36:40 +0200 Subject: [PATCH 008/884] Updated. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8b368c249..ef03cc1b2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,7 +62,7 @@ About 300 persons have contributed to WeKan, stats at: https://www.openhub.net/p/wekan -WeKan maintainer xet7 checks PR for typos etc before accepting to WeKan, +WeKan maintainer xet7 reviews PR for typos etc before accepting to WeKan, so that WeKan code will still work OK. ## Contributing translations From 59874d16b9cf95ff05d92dd4d3bbdcb42fd37a94 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 16 Nov 2023 15:37:40 +0200 Subject: [PATCH 009/884] Updated. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ef03cc1b2..8054427d0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -84,7 +84,7 @@ new release. Only xet7 has write access to WeKan Organization. -xet7 all PRs before merging. +xet7 reviews all PRs before merging. There has been over 300 contributors to WeKan, newest stats at: From f047c6da295c4ab5ddc6d4d0a8137f419d8704d5 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 16 Nov 2023 15:38:53 +0200 Subject: [PATCH 010/884] Updated security.md --- SECURITY.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SECURITY.md b/SECURITY.md index f32de5d93..5aff43c5a 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,3 +1,5 @@ +About money, see [CONTRIBUTING.md](CONTRIBUTING.md) + Security is very important to us. If you discover any issue regarding security, please disclose the information responsibly by sending an email to support (at) wekan.team using [this PGP public key](support-at-wekan.team_pgp-publickey.asc) and not by From c4293ecd95b9faec846060bcbcb8362cb58a54e6 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 16 Nov 2023 15:49:39 +0200 Subject: [PATCH 011/884] Updates. --- CODE_OF_CONDUCT.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 000000000..9c26d25a9 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,8 @@ +# Code of Conduct + +For https://github.com/wekan/wekan + +- All code in pull requests need to have permission already to add it to WeKan with MIT license, and will become MIT license. +- All code xet7 add is MIT license. +- For any dependencies, permissive licenses like https://copyfree.org are preferred +- For anything currently that is non-permissive (like GPL, AGPL, SSPL), those will be replaced with permissive-licensed alternatives From f512047ac6439e53f92359f45ab907c629d225a9 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 16 Nov 2023 15:59:01 +0200 Subject: [PATCH 012/884] Updates. --- CODE_OF_CONDUCT.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 9c26d25a9..f639fe496 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,8 +1,22 @@ # Code of Conduct -For https://github.com/wekan/wekan +For all code at WeKan GitHub Organization https://github.com/wekan - All code in pull requests need to have permission already to add it to WeKan with MIT license, and will become MIT license. - All code xet7 add is MIT license. - For any dependencies, permissive licenses like https://copyfree.org are preferred - For anything currently that is non-permissive (like GPL, AGPL, SSPL), those will be replaced with permissive-licensed alternatives + +# Reporting about violations or something else + +## Private reports + +- Email support (at) wekan.team using [this PGP public key](support-at-wekan.team_pgp-publickey.asc) if possible +- Security issues: [SECURITY.md](SECURITY.md) +- License violations +- Anything private, sensitive or negative + +## Public + +- Feature Requests and Bug Reports https://github.com/wekan/wekan/issues +- Anything happy, positive, encouraging, helping, at friendly WeKan Global FOSS Community From 63201e992c884215a37d152447a119c905d2acba Mon Sep 17 00:00:00 2001 From: Diego Steiner Date: Sun, 19 Nov 2023 14:07:06 +0100 Subject: [PATCH 013/884] feature: add permissions for default boards --- packages/wekan-oidc/oidc_server.js | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/packages/wekan-oidc/oidc_server.js b/packages/wekan-oidc/oidc_server.js index ea8e0ba82..09398b625 100644 --- a/packages/wekan-oidc/oidc_server.js +++ b/packages/wekan-oidc/oidc_server.js @@ -312,19 +312,23 @@ Meteor.methods({ check(info, Object); check(oidcUserId, String); - const defaultBoardId = process.env.DEFAULT_BOARD_ID || false; + const defaultBoardParams = (process.env.DEFAULT_BOARD_ID || '').split(':'); + const defaultBoardId = defaultBoardParams.pop() + if (!defaultBoardId) return - if (defaultBoardId) - { - const board = Boards.findOne(defaultBoardId) - const user = Users.findOne({ 'services.oidc.id': oidcUserId }) - const memberIndex = _.pluck(board.members, 'userId').indexOf(user._id); + const board = Boards.findOne(defaultBoardId) + const user = Users.findOne({ 'services.oidc.id': oidcUserId }) + const memberIndex = _.pluck(board.members, 'userId').indexOf(user._id); + if(!board || memberIndex > -1) return - if(board && memberIndex < 0) - { - board.addMember(user._id) - } - } + board.addMember(user._id) + board.setMemberPermission( + user._id, + defaultBoardParams.contains("isAdmin"), + defaultBoardParams.contains("isNoComments"), + defaultBoardParams.contains("isCommentsOnly"), + defaultBoardParams.contains("isWorker") + ) } }); From 6e2f84673e98abec07a10c843ab83bed50774b35 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sun, 19 Nov 2023 23:33:40 +0200 Subject: [PATCH 014/884] When user logins, "Automatically add user with the domain name" (at Admin Panel / Organizations) to Organization. Part 1. Thanks to xet7 ! --- client/components/settings/peopleBody.jade | 11 ++++++++ client/components/settings/peopleBody.js | 6 +++++ imports/i18n/data/en.i18n.json | 1 + models/org.js | 30 ++++++++++++++++++++++ 4 files changed, 48 insertions(+) diff --git a/client/components/settings/peopleBody.jade b/client/components/settings/peopleBody.jade index e81ed2aca..727c7d3f2 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,6 +312,9 @@ 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) @@ -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) 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/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/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, }, From 6a9d73834850aeea89c1f00997815c1cd902602e Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sun, 19 Nov 2023 23:47:30 +0200 Subject: [PATCH 015/884] Updated ChangeLog. --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ec320f67..656149476 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,9 @@ 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). + Thanks to xet7. and fixes the following bugs: From b6c7737f731bdada1bad5e0714a70a75ae557563 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sun, 19 Nov 2023 23:55:58 +0200 Subject: [PATCH 016/884] Updated translations. --- imports/i18n/data/af.i18n.json | 1 + imports/i18n/data/af_ZA.i18n.json | 1 + imports/i18n/data/ar-DZ.i18n.json | 1 + imports/i18n/data/ar-EG.i18n.json | 1 + imports/i18n/data/ar.i18n.json | 1 + imports/i18n/data/ary.i18n.json | 1 + imports/i18n/data/ast-ES.i18n.json | 1 + imports/i18n/data/az-AZ.i18n.json | 1 + imports/i18n/data/az-LA.i18n.json | 1 + imports/i18n/data/az.i18n.json | 1 + imports/i18n/data/bg.i18n.json | 1 + imports/i18n/data/br.i18n.json | 1 + imports/i18n/data/ca.i18n.json | 1 + imports/i18n/data/ca_ES.i18n.json | 1 + imports/i18n/data/cmn.i18n.json | 1 + imports/i18n/data/cs-CZ.i18n.json | 1 + imports/i18n/data/cs.i18n.json | 1 + imports/i18n/data/cy-GB.i18n.json | 1 + imports/i18n/data/cy.i18n.json | 1 + imports/i18n/data/da.i18n.json | 1 + imports/i18n/data/de-AT.i18n.json | 1 + imports/i18n/data/de-CH.i18n.json | 1 + imports/i18n/data/de.i18n.json | 1 + imports/i18n/data/el-GR.i18n.json | 1 + imports/i18n/data/el.i18n.json | 1 + imports/i18n/data/en-BR.i18n.json | 1 + imports/i18n/data/en-DE.i18n.json | 1 + imports/i18n/data/en-GB.i18n.json | 1 + imports/i18n/data/en-IT.i18n.json | 1 + imports/i18n/data/en-MY.i18n.json | 1 + imports/i18n/data/en-YS.i18n.json | 1 + imports/i18n/data/en_ZA.i18n.json | 1 + imports/i18n/data/eo.i18n.json | 1 + imports/i18n/data/es-AR.i18n.json | 1 + imports/i18n/data/es-CL.i18n.json | 1 + imports/i18n/data/es-LA.i18n.json | 1 + imports/i18n/data/es-MX.i18n.json | 1 + imports/i18n/data/es-PE.i18n.json | 1 + imports/i18n/data/es-PY.i18n.json | 1 + imports/i18n/data/es.i18n.json | 1 + imports/i18n/data/es_CO.i18n.json | 1 + imports/i18n/data/et-EE.i18n.json | 1 + imports/i18n/data/eu.i18n.json | 1 + imports/i18n/data/fa-IR.i18n.json | 1 + imports/i18n/data/fa.i18n.json | 1 + imports/i18n/data/fi.i18n.json | 1 + imports/i18n/data/fr-CH.i18n.json | 1 + imports/i18n/data/fr-FR.i18n.json | 1 + imports/i18n/data/fr.i18n.json | 1 + imports/i18n/data/fy-NL.i18n.json | 1 + imports/i18n/data/fy.i18n.json | 1 + imports/i18n/data/gl-ES.i18n.json | 1 + imports/i18n/data/gl.i18n.json | 1 + imports/i18n/data/gu-IN.i18n.json | 1 + imports/i18n/data/he-IL.i18n.json | 1 + imports/i18n/data/he.i18n.json | 1 + imports/i18n/data/hi-IN.i18n.json | 1 + imports/i18n/data/hi.i18n.json | 1 + imports/i18n/data/hr.i18n.json | 1 + imports/i18n/data/hu.i18n.json | 1 + imports/i18n/data/hy.i18n.json | 1 + imports/i18n/data/id.i18n.json | 1 + imports/i18n/data/ig.i18n.json | 1 + imports/i18n/data/it.i18n.json | 1 + imports/i18n/data/ja-HI.i18n.json | 1 + imports/i18n/data/ja.i18n.json | 1 + imports/i18n/data/ka.i18n.json | 1 + imports/i18n/data/km.i18n.json | 1 + imports/i18n/data/ko-KR.i18n.json | 1 + imports/i18n/data/ko.i18n.json | 1 + imports/i18n/data/lt.i18n.json | 1 + imports/i18n/data/lv.i18n.json | 1 + imports/i18n/data/mk.i18n.json | 1 + imports/i18n/data/mn.i18n.json | 1 + imports/i18n/data/ms-MY.i18n.json | 1 + imports/i18n/data/ms.i18n.json | 1 + imports/i18n/data/nb.i18n.json | 1 + imports/i18n/data/nl-NL.i18n.json | 1 + imports/i18n/data/nl.i18n.json | 1 + imports/i18n/data/oc.i18n.json | 1 + imports/i18n/data/pa.i18n.json | 1 + imports/i18n/data/pl-PL.i18n.json | 1 + imports/i18n/data/pl.i18n.json | 1 + imports/i18n/data/pt-BR.i18n.json | 1 + imports/i18n/data/pt.i18n.json | 1 + imports/i18n/data/pt_PT.i18n.json | 1 + imports/i18n/data/ro-RO.i18n.json | 1 + imports/i18n/data/ro.i18n.json | 1 + imports/i18n/data/ru-UA.i18n.json | 1 + imports/i18n/data/ru.i18n.json | 1 + imports/i18n/data/sk.i18n.json | 1 + imports/i18n/data/sl.i18n.json | 1 + imports/i18n/data/sr.i18n.json | 1 + imports/i18n/data/sv.i18n.json | 1 + imports/i18n/data/sw.i18n.json | 1 + imports/i18n/data/ta.i18n.json | 1 + imports/i18n/data/th.i18n.json | 1 + imports/i18n/data/tlh.i18n.json | 1 + imports/i18n/data/tr.i18n.json | 1 + imports/i18n/data/ug.i18n.json | 1 + imports/i18n/data/uk-UA.i18n.json | 1 + imports/i18n/data/uk.i18n.json | 1 + imports/i18n/data/uz-AR.i18n.json | 1 + imports/i18n/data/uz-LA.i18n.json | 1 + imports/i18n/data/uz-UZ.i18n.json | 1 + imports/i18n/data/uz.i18n.json | 1 + imports/i18n/data/ve-CC.i18n.json | 1 + imports/i18n/data/ve-PP.i18n.json | 1 + imports/i18n/data/ve.i18n.json | 1 + imports/i18n/data/vi-VN.i18n.json | 1 + imports/i18n/data/vi.i18n.json | 1 + imports/i18n/data/vl-SS.i18n.json | 1 + imports/i18n/data/vo.i18n.json | 1 + imports/i18n/data/wa-RR.i18n.json | 1 + imports/i18n/data/wa.i18n.json | 1 + imports/i18n/data/wo.i18n.json | 1 + imports/i18n/data/xh.i18n.json | 1 + imports/i18n/data/yi.i18n.json | 1 + imports/i18n/data/yo.i18n.json | 1 + imports/i18n/data/yue_CN.i18n.json | 1 + imports/i18n/data/zgh.i18n.json | 1 + imports/i18n/data/zh-CN.i18n.json | 1 + imports/i18n/data/zh-GB.i18n.json | 1 + imports/i18n/data/zh-HK.i18n.json | 1 + imports/i18n/data/zh-Hans.i18n.json | 1 + imports/i18n/data/zh-Hant.i18n.json | 1 + imports/i18n/data/zh-TW.i18n.json | 1 + imports/i18n/data/zh.i18n.json | 1 + imports/i18n/data/zu-ZA.i18n.json | 1 + imports/i18n/data/zu.i18n.json | 1 + 130 files changed, 130 insertions(+) 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_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", From 9bc63669933bd763930add22ad7d05d89566d3ee Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 00:02:19 +0200 Subject: [PATCH 017/884] When user logins, "Automatically add user with the domain name" (at Admin Panel / Organizations) to Organization. Part 2. Thanks to xet7 ! --- server/publications/org.js | 1 + 1 file changed, 1 insertion(+) 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, From bd5bb2a8a9a17325b7a4703741aeb766ea6ec872 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 00:03:28 +0200 Subject: [PATCH 018/884] Updated ChangeLog. --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 656149476..5e8355638 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,7 +27,8 @@ 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 1](https://github.com/wekan/wekan/commit/6e2f84673e98abec07a10c843ab83bed50774b35), + [Part 2](https://github.com/wekan/wekan/commit/9bc63669933bd763930add22ad7d05d89566d3ee). Thanks to xet7. and fixes the following bugs: From cd51ad75086950f29adf245b6d6c0b43e69da171 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 00:53:37 +0200 Subject: [PATCH 019/884] Fix typos at oidc_server.js . Thanks to xet7 ! --- packages/wekan-oidc/oidc_server.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/wekan-oidc/oidc_server.js b/packages/wekan-oidc/oidc_server.js index ea8e0ba82..d059ccbdd 100644 --- a/packages/wekan-oidc/oidc_server.js +++ b/packages/wekan-oidc/oidc_server.js @@ -316,13 +316,13 @@ Meteor.methods({ if (defaultBoardId) { - const board = Boards.findOne(defaultBoardId) - const user = Users.findOne({ 'services.oidc.id': oidcUserId }) + const board = Boards.findOne(defaultBoardId); + const user = Users.findOne({ 'services.oidc.id': oidcUserId }); const memberIndex = _.pluck(board.members, 'userId').indexOf(user._id); if(board && memberIndex < 0) { - board.addMember(user._id) + board.addMember(user._id); } } } From bd3d7ec9c9e25554d769a3049b818c48c578e81d Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 00:55:01 +0200 Subject: [PATCH 020/884] Updated ChangeLog. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e8355638..1a27abfef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,8 @@ 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. Thanks to above GitHub users for their contributions and translators for their translations. From 6405c35bc08fc73657a4111c6fd72a8bd72ded70 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 01:20:30 +0200 Subject: [PATCH 021/884] Fix to not anymore show confusing Organization Id and Team Id fields at Admin Panel / People / People / Edit user. Thanks to xet7 ! --- client/components/settings/peopleBody.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/settings/peopleBody.jade b/client/components/settings/peopleBody.jade index 727c7d3f2..ec727c6c0 100644 --- a/client/components/settings/peopleBody.jade +++ b/client/components/settings/peopleBody.jade @@ -413,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 @@ -423,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 From a55992276d1f133828e58cf8e794050d8dbd3909 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 01:23:48 +0200 Subject: [PATCH 022/884] Updated ChangeLog. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a27abfef..b2d056f52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,8 @@ and fixes the following bugs: 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. Thanks to above GitHub users for their contributions and translators for their translations. From d4d6a5f96d88a89eb47ee56ba9857e859203a53c Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 01:28:14 +0200 Subject: [PATCH 023/884] Fix to not anymore require website for Organization and Team. Thanks to xet7 ! --- client/components/settings/peopleBody.jade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/components/settings/peopleBody.jade b/client/components/settings/peopleBody.jade index ec727c6c0..2e4fe5021 100644 --- a/client/components/settings/peopleBody.jade +++ b/client/components/settings/peopleBody.jade @@ -317,7 +317,7 @@ template(name="editOrgPopup") 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 @@ -343,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 @@ -473,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 From 8f33ab3487e662e101483bcdef515cb89c7ecb57 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 01:31:04 +0200 Subject: [PATCH 024/884] Updated ChangeLog. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2d056f52..72b277ba0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,8 @@ and fixes the following bugs: 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. Thanks to above GitHub users for their contributions and translators for their translations. From cf5312ed2e2780baa0e16e1feeec5e238f4059fa Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 02:37:27 +0200 Subject: [PATCH 025/884] Updated ChangeLog. --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72b277ba0..eb2e1d140 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,20 @@ This release adds the following new features: [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). From 2048975e92152bb1c397b61fc2fd0a8124fade58 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 14:18:38 +0200 Subject: [PATCH 026/884] Snap: Disable apparmor="DENIED" in syslog. Thanks to diegargon, webenefits and xet7 ! Fixes #4855 --- snap-src/bin/mongodb-control | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) 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 From e760a4140b08fb7de0b8c782283bc81a24f4d8d8 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 14:22:18 +0200 Subject: [PATCH 027/884] Updated ChangeLog. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb2e1d140..c0efb687d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,6 +55,8 @@ and fixes the following bugs: 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. From 3e469c5a4412940e68ddbf0cbce4eab48705c0ee Mon Sep 17 00:00:00 2001 From: Diego Steiner Date: Mon, 20 Nov 2023 16:01:18 +0100 Subject: [PATCH 028/884] feature: add permissions for default boards --- packages/wekan-oidc/oidc_server.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/wekan-oidc/oidc_server.js b/packages/wekan-oidc/oidc_server.js index 09398b625..35b7f922c 100644 --- a/packages/wekan-oidc/oidc_server.js +++ b/packages/wekan-oidc/oidc_server.js @@ -313,17 +313,17 @@ Meteor.methods({ check(oidcUserId, String); const defaultBoardParams = (process.env.DEFAULT_BOARD_ID || '').split(':'); - const defaultBoardId = defaultBoardParams.pop() + const defaultBoardId = defaultBoardParams.shift() if (!defaultBoardId) return const board = Boards.findOne(defaultBoardId) - const user = Users.findOne({ 'services.oidc.id': oidcUserId }) - const memberIndex = _.pluck(board.members, 'userId').indexOf(user._id); - if(!board || memberIndex > -1) return + const userId = Users.findOne({ 'services.oidc.id': oidcUserId })?._id + const memberIndex = _.pluck(board?.members, 'userId').indexOf(userId); + if(!board || !userId || memberIndex > -1) return - board.addMember(user._id) + board.addMember(userId) board.setMemberPermission( - user._id, + userId, defaultBoardParams.contains("isAdmin"), defaultBoardParams.contains("isNoComments"), defaultBoardParams.contains("isCommentsOnly"), From dcf75f0bcdff12f84fcee68831829952aa7e10b8 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 21:50:05 +0200 Subject: [PATCH 029/884] Updated ChangeLog. --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0efb687d..c8d5ef532 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,10 +26,12 @@ 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. +- When user logins, "Automatically add user with the domain name" (at Admin Panel / Organizations) to Organization. In Progress. [Part 1](https://github.com/wekan/wekan/commit/6e2f84673e98abec07a10c843ab83bed50774b35), [Part 2](https://github.com/wekan/wekan/commit/9bc63669933bd763930add22ad7d05d89566d3ee). Thanks to xet7. +- [Permissions for default board after OIDC/OAuth2 login](https://github.com/wekan/wekan/pull/5213). + Thanks to diegosteiner. and adds the following updates: From d16c1418219adb0ee65e920767323c21cbeafa2a Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 21:51:30 +0200 Subject: [PATCH 030/884] Updated translations. --- imports/i18n/data/he.i18n.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/i18n/data/he.i18n.json b/imports/i18n/data/he.i18n.json index 65379855b..784cab688 100644 --- a/imports/i18n/data/he.i18n.json +++ b/imports/i18n/data/he.i18n.json @@ -962,7 +962,7 @@ "teams": "צוותים", "displayName": "שם התצוגה", "shortName": "שם קצר", - "autoAddUsersWithDomainName": "Automatically add users with the domain name", + "autoAddUsersWithDomainName": "להוסיף אוטומטית משתמשים עם שם התחום", "website": "אתר", "person": "איש/ה", "my-cards": "הכרטיסים שלי", From a032586aaf7da7a25c7d8683e5e27cf146837493 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Nov 2023 21:57:18 +0200 Subject: [PATCH 031/884] v7.19 --- CHANGELOG.md | 2 +- Stackerfile.yml | 2 +- package-lock.json | 2 +- package.json | 2 +- public/api/wekan.html | 6 +++--- public/api/wekan.yml | 2 +- sandstorm-pkgdef.capnp | 4 ++-- snapcraft.yaml | 8 ++++---- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8d5ef532..9a884a816 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ Note: [How to upgrade WeKan](https://github.com/wekan/wekan/issues/4585) -# Upcoming WeKan ® release +# v7.19 2023-11-20 WeKan ® release This release adds the following new features: diff --git a/Stackerfile.yml b/Stackerfile.yml index c1934827e..42940f988 100644 --- a/Stackerfile.yml +++ b/Stackerfile.yml @@ -1,5 +1,5 @@ appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 -appVersion: "v7.18.0" +appVersion: "v7.19.0" files: userUploads: - README.md diff --git a/package-lock.json b/package-lock.json index 00e4ec74b..cb97ee4e8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v7.18.0", + "version": "v7.19.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index ef495bd96..cd6aafa2a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v7.18.0", + "version": "v7.19.0", "description": "Open-Source kanban", "private": true, "repository": { diff --git a/public/api/wekan.html b/public/api/wekan.html index b6c8a9ad7..2cc7e566c 100644 --- a/public/api/wekan.html +++ b/public/api/wekan.html @@ -7,7 +7,7 @@ - Wekan REST API v7.18 + Wekan REST API v7.19 @@ -1548,7 +1548,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc