[PR #1498] [MERGED] Dev to release #3263

Closed
opened 2026-03-02 13:57:33 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/KelvinTegelaar/CIPP/pull/1498
Author: @KelvinTegelaar
Created: 4/21/2023
Status: Merged
Merged: 4/21/2023
Merged by: @KelvinTegelaar

Base: mainHead: dev


📝 Commits (10+)

  • 3436056 Changed mention of templates to alerts
  • 7d02627 Merge pull request #1461 from rvdwegen/patch-2
  • 7925bba Added Ability to disable MFA Nudges Standard
  • dc71b0c Merge pull request #1463 from BNWEIN/dev
  • e718766 GDAP Role Wizard
  • ebd1268 Reorder GDAP wizard steps
  • 54f1009 Add Map GDAP roles button
  • 71119fc Add link to Role wizard in GDAP wizard
  • 0c5c95d Job History offcanvas
  • 4dd0590 Add custom suffix feature

📊 Changes

22 files changed (+851 additions, -412 deletions)

View changed files

📝 .vscode/launch.json (+7 -0)
📝 README.md (+1 -141)
📝 package-lock.json (+65 -0)
📝 package.json (+2 -0)
📝 public/version_latest.txt (+1 -1)
📝 src/_nav.js (+10 -0)
📝 src/adminRoutes.js (+12 -0)
📝 src/components/header/AppHeaderDropdown.js (+70 -3)
📝 src/components/tables/CellBoolean.js (+4 -2)
📝 src/components/tables/CippOffcanvasTable.js (+1 -1)
📝 src/components/utilities/CippActionsOffcanvas.js (+35 -4)
📝 src/data/standards.json (+9 -2)
📝 src/views/email-exchange/administration/ViewMobileDevices.js (+173 -78)
📝 src/views/email-exchange/reports/MailboxStatisticsList.js (+92 -67)
📝 src/views/identity/administration/EditGroup.js (+8 -0)
📝 src/views/identity/administration/UserActions.js (+11 -0)
📝 src/views/identity/administration/Users.js (+87 -62)
src/views/tenant/administration/GDAPRoleWizard.js (+169 -0)
📝 src/views/tenant/administration/GDAPWizard.js (+49 -48)
📝 src/views/tenant/administration/ListAlertsQueue.js (+2 -2)

...and 2 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/KelvinTegelaar/CIPP/pull/1498 **Author:** [@KelvinTegelaar](https://github.com/KelvinTegelaar) **Created:** 4/21/2023 **Status:** ✅ Merged **Merged:** 4/21/2023 **Merged by:** [@KelvinTegelaar](https://github.com/KelvinTegelaar) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`3436056`](https://github.com/KelvinTegelaar/CIPP/commit/34360562edaec7cf90d56d696d01a4be056c35a1) Changed mention of templates to alerts - [`7d02627`](https://github.com/KelvinTegelaar/CIPP/commit/7d0262777d4100bfb5ca999da6ec0878f19c8c14) Merge pull request #1461 from rvdwegen/patch-2 - [`7925bba`](https://github.com/KelvinTegelaar/CIPP/commit/7925bba4076f901997967ec50c7270aad1738707) Added Ability to disable MFA Nudges Standard - [`dc71b0c`](https://github.com/KelvinTegelaar/CIPP/commit/dc71b0c547a90c975e36acbae68c67f92e7dd18f) Merge pull request #1463 from BNWEIN/dev - [`e718766`](https://github.com/KelvinTegelaar/CIPP/commit/e7187660af96e9deeda19ca7c16afd02ee8a2264) GDAP Role Wizard - [`ebd1268`](https://github.com/KelvinTegelaar/CIPP/commit/ebd1268265d29032df07747cbe08cc42ff4d2bb4) Reorder GDAP wizard steps - [`54f1009`](https://github.com/KelvinTegelaar/CIPP/commit/54f1009802b2eab3edc4514a2fbf7422297aa0ad) Add Map GDAP roles button - [`71119fc`](https://github.com/KelvinTegelaar/CIPP/commit/71119fcc993acea16c43fbc7a456358ff377428a) Add link to Role wizard in GDAP wizard - [`0c5c95d`](https://github.com/KelvinTegelaar/CIPP/commit/0c5c95d6b0461645c7f4262ff10efdb3b48eea00) Job History offcanvas - [`4dd0590`](https://github.com/KelvinTegelaar/CIPP/commit/4dd059016e3e576a636c29694e60f351417ea74a) Add custom suffix feature ### 📊 Changes **22 files changed** (+851 additions, -412 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/launch.json` (+7 -0) 📝 `README.md` (+1 -141) 📝 `package-lock.json` (+65 -0) 📝 `package.json` (+2 -0) 📝 `public/version_latest.txt` (+1 -1) 📝 `src/_nav.js` (+10 -0) 📝 `src/adminRoutes.js` (+12 -0) 📝 `src/components/header/AppHeaderDropdown.js` (+70 -3) 📝 `src/components/tables/CellBoolean.js` (+4 -2) 📝 `src/components/tables/CippOffcanvasTable.js` (+1 -1) 📝 `src/components/utilities/CippActionsOffcanvas.js` (+35 -4) 📝 `src/data/standards.json` (+9 -2) 📝 `src/views/email-exchange/administration/ViewMobileDevices.js` (+173 -78) 📝 `src/views/email-exchange/reports/MailboxStatisticsList.js` (+92 -67) 📝 `src/views/identity/administration/EditGroup.js` (+8 -0) 📝 `src/views/identity/administration/UserActions.js` (+11 -0) 📝 `src/views/identity/administration/Users.js` (+87 -62) ➕ `src/views/tenant/administration/GDAPRoleWizard.js` (+169 -0) 📝 `src/views/tenant/administration/GDAPWizard.js` (+49 -48) 📝 `src/views/tenant/administration/ListAlertsQueue.js` (+2 -2) _...and 2 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 13:57:33 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/CIPP#3263
No description provided.