Skip to content

Commit df9dbfb

Browse files
authored
Merge branch 'KelvinTegelaar:dev' into dev
2 parents 2e003e0 + 59cc85d commit df9dbfb

File tree

8 files changed

+506
-396
lines changed

8 files changed

+506
-396
lines changed

public/version_latest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.0
1+
3.8.0

src/data/standards.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,20 @@
366366
},
367367
"label": "Set Sharing Level for Default calendar"
368368
},
369+
{
370+
"name": "standards.UserSubmissions.enable",
371+
"cat": "Exchange",
372+
"helpText": "This is the default helptext",
373+
"addedComponent": null,
374+
"label": "Enable the built-in Report button in Outlook"
375+
},
376+
{
377+
"name": "standards.UserSubmissions.disable",
378+
"cat": "Exchange",
379+
"helpText": "This is the default helptext",
380+
"addedComponent": null,
381+
"label": "Disable the built-in Report button in Outlook"
382+
},
369383
{
370384
"name": "standards.intuneDeviceReg.Enabled",
371385
"cat": "Intune",

src/views/tenant/administration/AlertWizard.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@ const AlertWizard = () => {
126126
<RFFCFormSwitch name="SharePointQuota" label="Alert on 90% SharePoint quota used" />
127127
<RFFCFormSwitch name="UnusedLicenses" label="Alert on unused licenses" />
128128
<RFFCFormSwitch name="OverusedLicenses" label="Alert on overused licenses" />
129+
<RFFCFormSwitch
130+
name="ExpiringLicenses"
131+
label="Alert on licenses expiring in 30 days"
132+
/>
133+
129134
<RFFCFormSwitch
130135
name="AppSecretExpiry"
131136
label="Alert on expiring application secrets"

src/views/tenant/administration/ListAlertsQueue.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,13 @@ const ListAlertsQueue = () => {
149149
exportSelector: 'SharepointQuota',
150150
cell: cellBooleanFormatter(),
151151
},
152+
{
153+
name: 'Expiring Licenses',
154+
selector: (row) => row['ExpiringLicenses'],
155+
sortable: true,
156+
exportSelector: 'ExpiringLicenses',
157+
cell: cellBooleanFormatter(),
158+
},
152159
{
153160
name: 'Actions',
154161
cell: Actions,

src/views/tenant/administration/ListLicences.js

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react'
22
import { useSelector } from 'react-redux'
33
import { CippPageList } from 'src/components/layout'
4-
import { CellTip } from 'src/components/tables'
4+
import { CellTip, cellBooleanFormatter, cellDateFormatter } from 'src/components/tables'
55

66
const columns = [
77
{
@@ -38,6 +38,39 @@ const columns = [
3838
sortable: true,
3939
exportSelector: 'TotalLicenses',
4040
},
41+
{
42+
name: 'Estimated Term',
43+
selector: (row) => row['EstTerm'],
44+
sortable: true,
45+
exportSelector: 'EstTerm',
46+
},
47+
{
48+
name: 'Trial',
49+
selector: (row) => row['Trial'],
50+
sortable: true,
51+
exportSelector: 'Trial',
52+
cell: cellBooleanFormatter(),
53+
},
54+
{
55+
name: 'Time until renewal (days)',
56+
selector: (row) => row['TimeUntilRenew'],
57+
sortable: true,
58+
exportSelector: 'TimeUntilRenew',
59+
},
60+
{
61+
name: 'Date Created',
62+
selector: (row) => row['dateCreated'],
63+
sortable: true,
64+
exportSelector: 'dateCreated',
65+
cell: cellDateFormatter(),
66+
},
67+
{
68+
name: 'Time until renewal (days)',
69+
selector: (row) => row['dateExpires'],
70+
sortable: true,
71+
exportSelector: 'dateExpires',
72+
cell: cellDateFormatter(),
73+
},
4174
]
4275

4376
const LicenseList = () => {

0 commit comments

Comments
 (0)