Skip to content

Commit 10d8d22

Browse files
authored
Merge branch 'KelvinTegelaar:master' into master
2 parents 6838e04 + 6b50f40 commit 10d8d22

File tree

383 files changed

+7337
-238370
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

383 files changed

+7337
-238370
lines changed

.github/workflows/dev_cippahmcc.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/dev_cippmpiii.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/publish_release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
steps:
1818
# Checkout the repository
1919
- name: Checkout Code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
21+
with:
22+
persist-credentials: false
2123

2224
# Read and Trim Version
2325
- name: Read and Trim Version
@@ -91,4 +93,4 @@ jobs:
9193
container_name: cipp-api
9294
source_folder: src/releases/
9395
destination_folder: /
94-
delete_if_exists: true
96+
delete_if_exists: true

.github/workflows/upload_dev.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
steps:
1515
# Checkout the repository
1616
- name: Checkout Code
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
18+
with:
19+
persist-credentials: false
1820

1921
# Create ZIP File in a New Source Directory
2022
- name: Prepare and Zip Release Files

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Logs
99
ExcludedTenants
1010
SendNotifications/config.json
1111
.env
12-
12+
Output/
1313

1414
# Cursor IDE
1515
.cursor/rules

CIPPTimers.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"Id": "4d80205c-674d-4fc1-abeb-a1ec37e0d796",
8585
"Command": "Start-DriftStandardsOrchestrator",
8686
"Description": "Orchestrator to process drift standards",
87-
"Cron": "0 0 */1 * * *",
87+
"Cron": "0 0 */12 * * *",
8888
"Priority": 5,
8989
"RunOnProcessor": true,
9090
"PreferredProcessor": "standards"
@@ -213,5 +213,14 @@
213213
"Priority": 20,
214214
"RunOnProcessor": true,
215215
"IsSystem": true
216+
},
217+
{
218+
"Id": "b8f3c2e1-5d4a-4f7b-9a2c-1e6d8f3b5a7c",
219+
"Command": "Start-BackupRetentionCleanup",
220+
"Description": "Timer to cleanup old backups based on retention policy",
221+
"Cron": "0 0 2 * * *",
222+
"Priority": 21,
223+
"RunOnProcessor": true,
224+
"IsSystem": true
216225
}
217226
]

Config/schemaDefinitions.json

Lines changed: 39 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,46 @@
22
{
33
"id": "cippUser",
44
"description": "CIPP User Schema",
5-
"targetTypes": ["User"],
5+
"targetTypes": [
6+
"User"
7+
],
68
"properties": [
7-
{ "name": "jitAdminEnabled", "type": "Boolean" },
8-
{ "name": "jitAdminExpiration", "type": "DateTime" },
9-
{ "name": "jitAdminReason", "type": "String" },
10-
{ "name": "mailboxType", "type": "String" },
11-
{ "name": "archiveEnabled", "type": "Boolean" },
12-
{ "name": "autoExpandingArchiveEnabled", "type": "Boolean" },
13-
{ "name": "perUserMfaState", "type": "String" }
9+
{
10+
"name": "jitAdminEnabled",
11+
"type": "Boolean"
12+
},
13+
{
14+
"name": "jitAdminExpiration",
15+
"type": "DateTime"
16+
},
17+
{
18+
"name": "jitAdminReason",
19+
"type": "String"
20+
},
21+
{
22+
"name": "jitAdminStartDate",
23+
"type": "DateTime"
24+
},
25+
{
26+
"name": "jitAdminCreatedBy",
27+
"type": "String"
28+
},
29+
{
30+
"name": "mailboxType",
31+
"type": "String"
32+
},
33+
{
34+
"name": "archiveEnabled",
35+
"type": "Boolean"
36+
},
37+
{
38+
"name": "autoExpandingArchiveEnabled",
39+
"type": "Boolean"
40+
},
41+
{
42+
"name": "perUserMfaState",
43+
"type": "String"
44+
}
1445
],
1546
"status": "Available"
1647
}
-12.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)