From 65f79d3837db7cc94a766cfb2bb24fc150693626 Mon Sep 17 00:00:00 2001 From: Michael P <45772816+mpriestau@users.noreply.github.com> Date: Sat, 29 Oct 2022 11:16:32 +1100 Subject: [PATCH 01/10] Update README.md Fixed a typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b6077cb99dec..9e42be1b45e1 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ The current build functionality is described below, also check out our Changelog - Remove user licenses - Convert user to shared mailbox - Disable user sign-in - - Reset user passord + - Reset user password - Remove user from all groups - Hide user from address list - Set Out of Office From 2bd5b83145cd857cbd0c48632daee92e2dbde5df Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Tue, 1 Nov 2022 12:30:15 +0100 Subject: [PATCH 02/10] Update Comment_on_Issues.yml --- .github/workflows/Comment_on_Issues.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Comment_on_Issues.yml b/.github/workflows/Comment_on_Issues.yml index f623b99da644..07e6af8c3e15 100644 --- a/.github/workflows/Comment_on_Issues.yml +++ b/.github/workflows/Comment_on_Issues.yml @@ -31,8 +31,10 @@ jobs: with: issue-number: ${{ github.event.issue.number }} body: | - Thank you for creating a feature request! feature requests are prioritized by our direct contributors. Your current priority is set to "No Priority". If you are a sponsor you can request an upgrade of priority, If you want this feature to be integrated you can always do this yourself by checking out our contributions guide at https://kelvintegelaar.github.io/CIPP/GettingStarted/Contributions.html. Contributors to the CIPP project reserve the right to close feature requests at will. - - If your feature request is not picked up in 2 week by a contributor it will be closed. + Thank you for creating a feature request! + Your current priority is set to "No Priority". No Priority Feature requests automatically get closed in two days if a contributor does not accept the FR. + + If you are a sponsor you can request an upgrade of priority. To upgrade the priority type "I would like to upgrade the priority". + If you want this feature to be integrated you can always do this yourself by checking out our contributions guide at https://kelvintegelaar.github.io/CIPP/GettingStarted/Contributions.html. Contributors to the CIPP project reserve the right to close feature requests at will. If you'd like this feature request to be assigned to you, please comment "I would like to work on this please!". From 0cdb16d274f59f369577c00686f05899be1810b5 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Tue, 1 Nov 2022 12:34:12 +0100 Subject: [PATCH 03/10] Update Comment_on_Issues.yml --- .github/workflows/Comment_on_Issues.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/Comment_on_Issues.yml b/.github/workflows/Comment_on_Issues.yml index 07e6af8c3e15..6bd12f6a005b 100644 --- a/.github/workflows/Comment_on_Issues.yml +++ b/.github/workflows/Comment_on_Issues.yml @@ -35,6 +35,5 @@ jobs: Your current priority is set to "No Priority". No Priority Feature requests automatically get closed in two days if a contributor does not accept the FR. If you are a sponsor you can request an upgrade of priority. To upgrade the priority type "I would like to upgrade the priority". - If you want this feature to be integrated you can always do this yourself by checking out our contributions guide at https://kelvintegelaar.github.io/CIPP/GettingStarted/Contributions.html. Contributors to the CIPP project reserve the right to close feature requests at will. - + If you want this feature to be integrated you can always do this yourself by checking out our contributions guide at https://cipp.app/docs/dev/. Contributors to the CIPP project reserve the right to close feature requests at will. If you'd like this feature request to be assigned to you, please comment "I would like to work on this please!". From d342c64b90b8e22f8fac43a7ff6155b724512029 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Tue, 1 Nov 2022 12:40:01 +0100 Subject: [PATCH 04/10] Create label_sponsor_requests.yml --- .github/workflows/label_sponsor_requests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/label_sponsor_requests.yml diff --git a/.github/workflows/label_sponsor_requests.yml b/.github/workflows/label_sponsor_requests.yml new file mode 100644 index 000000000000..b6096b76b35e --- /dev/null +++ b/.github/workflows/label_sponsor_requests.yml @@ -0,0 +1,17 @@ +--- +name: Label Issues +on: # yamllint disable-line rule:truthy + issues: + types: + - opened +jobs: + label_issues_bugs: + if: contains(github.event.issue.title,'Bug') + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - name: Sponsor Labels + uses: JasonEtco/is-sponsor-label-action@v1.2.0 + with: + label: 'Sponsor Request' From 0c3fa219de8d37b382b921a3c3f3b678328483ea Mon Sep 17 00:00:00 2001 From: Brendan Evans Date: Tue, 8 Nov 2022 16:44:35 +1000 Subject: [PATCH 05/10] correct typo in Mailbox User Information --- src/views/email-exchange/administration/MailboxesList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/email-exchange/administration/MailboxesList.js b/src/views/email-exchange/administration/MailboxesList.js index 2fda30ee5749..7368d8f11cb5 100644 --- a/src/views/email-exchange/administration/MailboxesList.js +++ b/src/views/email-exchange/administration/MailboxesList.js @@ -50,7 +50,7 @@ const MailboxList = () => { value: row.UPN, }, { - label: 'Aditional Email Addresses', + label: 'Additional Email Addresses', value: row.AdditionalEmailAddresses ? `${row.AdditionalEmailAddresses}` : 'No additional email addresses', From 51ce4713d490d3c6272b3126d3622b1a1c934c10 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Wed, 9 Nov 2022 15:29:41 +0100 Subject: [PATCH 06/10] Revert "correct typo in Mailbox User Information" --- src/views/email-exchange/administration/MailboxesList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/email-exchange/administration/MailboxesList.js b/src/views/email-exchange/administration/MailboxesList.js index 7368d8f11cb5..2fda30ee5749 100644 --- a/src/views/email-exchange/administration/MailboxesList.js +++ b/src/views/email-exchange/administration/MailboxesList.js @@ -50,7 +50,7 @@ const MailboxList = () => { value: row.UPN, }, { - label: 'Additional Email Addresses', + label: 'Aditional Email Addresses', value: row.AdditionalEmailAddresses ? `${row.AdditionalEmailAddresses}` : 'No additional email addresses', From cfd83b76234d65390714d0b786f0041a12b61650 Mon Sep 17 00:00:00 2001 From: BNWEIN Date: Tue, 6 Dec 2022 13:16:41 +0000 Subject: [PATCH 07/10] ci: add Azure Static Web Apps workflow file on-behalf-of: @Azure opensource@microsoft.com --- ...e-static-web-apps-brave-sand-047d97703.yml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/azure-static-web-apps-brave-sand-047d97703.yml diff --git a/.github/workflows/azure-static-web-apps-brave-sand-047d97703.yml b/.github/workflows/azure-static-web-apps-brave-sand-047d97703.yml new file mode 100644 index 000000000000..c7dc14cd3818 --- /dev/null +++ b/.github/workflows/azure-static-web-apps-brave-sand-047d97703.yml @@ -0,0 +1,45 @@ +name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - main + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_BRAVE_SAND_047D97703 }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "/" # App source code path + api_location: "" # Api source code path - optional + output_location: "" # Built app content directory - optional + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_BRAVE_SAND_047D97703 }} + action: "close" From 87f573e3821edde1c6e939c7472aca9894cae9d0 Mon Sep 17 00:00:00 2001 From: Ben Weinberg Date: Thu, 5 Jan 2023 15:24:38 +0000 Subject: [PATCH 08/10] Added OOO Option --- src/views/identity/administration/Users.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/views/identity/administration/Users.js b/src/views/identity/administration/Users.js index 6761a3c88008..79b2f673bd53 100644 --- a/src/views/identity/administration/Users.js +++ b/src/views/identity/administration/Users.js @@ -115,6 +115,21 @@ const Offcanvas = (row, rowIndex, formatExtraData) => { modalMessage: 'Enter a out of office message and press continue to set the out of office.', }, + { + label: 'Disable Out of Office', + color: 'info', + modal: true, + modalType: 'POST', + modalBody: { + user: row.userPrincipalName, + TenantFilter: tenant.defaultDomainName, + message: row.message, + }, + modalUrl: `/api/ExecDisableOoO`, + modalInput: true, + modalMessage: + 'Are you sure you want to disable the Out of Office for this user?.', + }, { label: 'Block Sign In', color: 'info', From 48826cac78134d22bbb6bf606373bd6ba66a4e76 Mon Sep 17 00:00:00 2001 From: Ben Weinberg Date: Thu, 5 Jan 2023 16:15:56 +0000 Subject: [PATCH 09/10] Undoing mistake --- src/views/identity/administration/Users.js | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/views/identity/administration/Users.js b/src/views/identity/administration/Users.js index 79b2f673bd53..6761a3c88008 100644 --- a/src/views/identity/administration/Users.js +++ b/src/views/identity/administration/Users.js @@ -115,21 +115,6 @@ const Offcanvas = (row, rowIndex, formatExtraData) => { modalMessage: 'Enter a out of office message and press continue to set the out of office.', }, - { - label: 'Disable Out of Office', - color: 'info', - modal: true, - modalType: 'POST', - modalBody: { - user: row.userPrincipalName, - TenantFilter: tenant.defaultDomainName, - message: row.message, - }, - modalUrl: `/api/ExecDisableOoO`, - modalInput: true, - modalMessage: - 'Are you sure you want to disable the Out of Office for this user?.', - }, { label: 'Block Sign In', color: 'info', From 66a50ccef9ad052acef14cd5456ede0f5e601f5f Mon Sep 17 00:00:00 2001 From: BNWEIN Date: Fri, 6 Jan 2023 13:32:51 +0000 Subject: [PATCH 10/10] Update Users.js added disable email forwarding --- src/views/identity/administration/Users.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/views/identity/administration/Users.js b/src/views/identity/administration/Users.js index 2732b526db3d..9551be46e20d 100644 --- a/src/views/identity/administration/Users.js +++ b/src/views/identity/administration/Users.js @@ -128,6 +128,19 @@ const Offcanvas = (row, rowIndex, formatExtraData) => { modalUrl: `/api/ExecSetOoO`, modalMessage: 'Are you sure you want to disable the out of office?', }, + { + label: 'Disable Email Forwarding', + color: 'info', + modal: true, + modalType: 'POST', + modalBody: { + user: row.userPrincipalName, + TenantFilter: tenant.defaultDomainName, + message: row.message, + }, + modalUrl: `/api/ExecDisableEmailForward`, + modalMessage: 'Are you sure you want to disable forwarding of this users emails?', + }, { label: 'Block Sign In', color: 'info',