Skip to content

Commit 93e5c5b

Browse files
authored
Merge pull request #31 from KelvinTegelaar/master
[pull] master from KelvinTegelaar:master
2 parents b341ad6 + ee4a2cf commit 93e5c5b

67 files changed

Lines changed: 1078 additions & 143 deletions

File tree

Some content is hidden

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

.github/instructions/cippdb.instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Search-CIPPDbData -TenantFilter $Tenant -SearchTerms @('john', 'admin') -Types @
119119

120120
## Cache types
121121

122-
Available types are defined in `CIPPDBCacheTypes.json`. Each type maps to a `Set-CIPPDBCache*` writer function. Check that file for the current type list — it covers identity, Exchange, security, Intune, compliance, and usage data.
122+
Available types are defined in `Config\CIPPDBCacheTypes.json`. Each type maps to a `Set-CIPPDBCache*` writer function. Check that file for the current type list — it covers identity, Exchange, security, Intune, compliance, and usage data.
123123

124124
## Writing a new Set-CIPPDBCache* function
125125

.github/workflows/upload_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# Create version.json with version and commit hash
2222
- name: Create version.json
2323
run: |
24-
VERSION=$(cat version_latest.txt | tr -d '[:space:]')
24+
VERSION=$(cat ./version_latest.txt | tr -d '[:space:]')
2525
SHORT_SHA="${GITHUB_SHA::7}"
2626
echo "{\"version\": \"${VERSION}\", \"commit\": \"${SHORT_SHA}\"}" > version.json
2727
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,11 +254,26 @@
254254
"friendlyName": "Mailbox Usage",
255255
"description": "Exchange Online mailbox usage statistics"
256256
},
257+
{
258+
"type": "OneDriveSiteListing",
259+
"friendlyName": "OneDrive Site Listing",
260+
"description": "OneDrive personal site listing details used for usage reporting"
261+
},
257262
{
258263
"type": "OneDriveUsage",
259264
"friendlyName": "OneDrive Usage",
260265
"description": "OneDrive usage statistics"
261266
},
267+
{
268+
"type": "SharePointSiteListing",
269+
"friendlyName": "SharePoint Site Listing",
270+
"description": "SharePoint site listing details used for usage reporting"
271+
},
272+
{
273+
"type": "SharePointSiteUsage",
274+
"friendlyName": "SharePoint Site Usage",
275+
"description": "SharePoint site usage statistics"
276+
},
262277
{
263278
"type": "OfficeActivations",
264279
"friendlyName": "Office Activations",
File renamed without changes.

Config/cipp-roles.json

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
{
22
"readonly": {
3-
"include": ["*.Read"],
4-
"exclude": ["CIPP.SuperAdmin.*"]
3+
"include": [
4+
"*.Read"
5+
],
6+
"exclude": [
7+
"CIPP.SuperAdmin.*",
8+
"CIPP.Admin.*",
9+
"CIPP.AppSettings.*"
10+
]
511
},
612
"editor": {
7-
"include": ["*.Read", "*.ReadWrite"],
13+
"include": [
14+
"*.Read",
15+
"*.ReadWrite"
16+
],
817
"exclude": [
918
"CIPP.SuperAdmin.*",
1019
"CIPP.Admin.*",
@@ -13,11 +22,17 @@
1322
]
1423
},
1524
"admin": {
16-
"include": ["*"],
17-
"exclude": ["CIPP.SuperAdmin.*"]
25+
"include": [
26+
"*"
27+
],
28+
"exclude": [
29+
"CIPP.SuperAdmin.*"
30+
]
1831
},
1932
"superadmin": {
20-
"include": ["*"],
33+
"include": [
34+
"*"
35+
],
2136
"exclude": []
2237
}
23-
}
38+
}

Config/version_latest.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10.4.2
File renamed without changes.

0 commit comments

Comments
 (0)