Skip to content

Commit 3439e33

Browse files
Merge pull request #2871 from KelvinTegelaar/dev
Dev
2 parents 51b2170 + 46b15c7 commit 3439e33

40 files changed

+849
-215
lines changed

deployment/AzureDeploymentTemplate.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
"name": "[variables('funcStorageName')]",
201201
"location": "[resourceGroup().location]",
202202
"tags": {
203-
"displayName": "funStorageName"
203+
"displayName": "funcStorageName"
204204
},
205205
"sku": {
206206
"name": "Standard_LRS"

deployment/AzureDeploymentTemplate_regionoptions.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"defaultValue": "CIPP",
77
"type": "string",
88
"metadata": {
9-
"description": "Name use as base-template to named the resources deployed in Azure."
9+
"description": "Name used as base-template to name the resources deployed in Azure."
1010
}
1111
},
1212
"GithubRepository": {
@@ -20,7 +20,7 @@
2020
"defaultValue": "GeneratedPassword",
2121
"type": "string",
2222
"metadata": {
23-
"description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token"
23+
"description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token)"
2424
}
2525
},
2626
"GithubAPIRepository": {
@@ -197,7 +197,7 @@
197197
"name": "[variables('funcStorageName')]",
198198
"location": "[resourceGroup().location]",
199199
"tags": {
200-
"displayName": "funStorageName"
200+
"displayName": "funcStorageName"
201201
},
202202
"sku": {
203203
"name": "Standard_LRS"

deployment/DevAzureDeploymentTemplate.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"defaultValue": "CIPPDev",
77
"type": "string",
88
"metadata": {
9-
"description": "Name use as base-template to named the resources deployed in Azure."
9+
"description": "Name used as base-template to name the resources deployed in Azure."
1010
}
1111
},
1212
"TenantID": {
@@ -48,7 +48,7 @@
4848
"defaultValue": "GeneratedPassword",
4949
"type": "string",
5050
"metadata": {
51-
"description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token"
51+
"description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token)"
5252
}
5353
},
5454
"GithubAPIRepository": {
@@ -250,7 +250,7 @@
250250
"name": "[variables('funcStorageName')]",
251251
"location": "[resourceGroup().location]",
252252
"tags": {
253-
"displayName": "funStorageName"
253+
"displayName": "funcStorageName"
254254
},
255255
"sku": {
256256
"name": "Standard_LRS"

deployment/DevAzureDeploymentTemplate_regionoptions.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"defaultValue": "CIPP",
77
"type": "string",
88
"metadata": {
9-
"description": "Name use as base-template to named the resources deployed in Azure."
9+
"description": "Name used as base-template to name the resources deployed in Azure."
1010
}
1111
},
1212
"TenantID": {
@@ -48,7 +48,7 @@
4848
"defaultValue": "GeneratedPassword",
4949
"type": "string",
5050
"metadata": {
51-
"description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token"
51+
"description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token)"
5252
}
5353
},
5454
"GithubAPIRepository": {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cipp",
3-
"version": "6.3.0",
3+
"version": "6.4.0",
44
"description": "The CyberDrain Improved Partner Portal is a portal to help manage administration for Microsoft Partners.",
55
"homepage": "https://cipp.app/",
66
"bugs": {

public/img/RoB-light.svg

+17
Loading

public/img/RoB.svg

+25
Loading

public/img/datto.png

-15 KB
Binary file not shown.

public/version_latest.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.3.0
1+
6.4.0

src/components/layout/AppFooter.jsx

+7-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const AppFooter = () => {
1010
const isDark =
1111
currentTheme === 'impact' || (currentTheme === 'default' && preferredTheme === 'impact')
1212

13-
const datto = isDark ? '/img/datto.png' : '/img/datto.png'
13+
const RoB = isDark ? '/img/RoB.svg' : '/img/RoB-light.svg'
1414
const huntress = isDark ? '/img/huntress_teal.png' : '/img/huntress_teal.png'
1515
const rewst = isDark ? '/img/rewst_dark.png' : '/img/rewst.png'
1616
const ninjaone = isDark ? '/img/ninjaone_dark.png' : '/img/ninjaone.png'
@@ -24,8 +24,12 @@ const AppFooter = () => {
2424
<CLink className="mx-2" href="https://www.huntress.com/" target="_blank">
2525
<CImage src={huntress} alt="Huntress" />
2626
</CLink>
27-
<CLink className="me-2" href="https://datto.com/" target="_blank">
28-
<CImage src={datto} alt="Datto" />
27+
<CLink
28+
className="me-2"
29+
href="https://www.rightofboom.com/rob-2025/register?promo=EarlyBird2025#register"
30+
target="_blank"
31+
>
32+
<CImage src={RoB} alt="RoB" />
2933
</CLink>
3034
<CLink className="me-2" href="https://rewst.io/" target="_blank">
3135
<CImage src={rewst} alt="Rewst" />

src/components/tables/CippDatatable.jsx

+6-4
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,18 @@ export default function CippDatatable({ path, params, ...rest }) {
1414
refetch,
1515
} = useListDatatableQuery({ path, params: { $filter: graphFilter, ...params } })
1616

17-
let anonimized = false // Assuming default value is false
17+
let anonymized = false // Assuming default value is false
1818
const regex = new RegExp('^[A-Z0-9]+$')
1919
const principalNameOrUPN =
2020
data[0]?.userPrincipalName ??
2121
data[0]?.UPN ??
22+
data[0]?.Owner ??
2223
data.Results?.[0]?.upn ??
23-
data.Results?.[0]?.userPrincipalName
24+
data.Results?.[0]?.userPrincipalName ??
25+
data.Results?.[0]?.Owner
2426

2527
if (principalNameOrUPN && regex.test(principalNameOrUPN)) {
26-
anonimized = true
28+
anonymized = true
2729
}
2830

2931
var defaultFilterText = ''
@@ -32,7 +34,7 @@ export default function CippDatatable({ path, params, ...rest }) {
3234
}
3335
return (
3436
<>
35-
{anonimized && (
37+
{anonymized && (
3638
<CCallout color="info">
3739
This table might contain anonymized data. Please check this
3840
<a

0 commit comments

Comments
 (0)