File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed
pages/tenant/administration/alert-configuration Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 26
26
" Rewst" ,
27
27
" Sherweb" ,
28
28
" Syncro" ,
29
+ " TERRL" ,
29
30
" Yubikey"
30
31
],
31
32
"ignoreWords" : [
Original file line number Diff line number Diff line change 158
158
"inputType" : " switch" ,
159
159
"inputLabel" : " Ignore Disabled Apps?" ,
160
160
"inputName" : " IgnoreDisabledApps"
161
+ },
162
+ {
163
+ "name" : " TERRL" ,
164
+ "label" : " Alert when Tenant External Recipient Rate Limit exceeds X %" ,
165
+ "requiresInput" : true ,
166
+ "inputType" : " number" ,
167
+ "inputLabel" : " Alert % (default: 80)" ,
168
+ "inputName" : " TERRLThreshold" ,
169
+ "recommendedRunInterval" : " 1h" ,
170
+ "description" : " Monitors tenant outbound email volume against Microsoft's TERRL limits. Tenant data is updated every hour."
161
171
}
162
172
]
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ const AlertWizard = () => {
63
63
{ label : "Email" , value : "Email" } ,
64
64
{ label : "PSA" , value : "PSA" } ,
65
65
] ;
66
- const actionstoTake = [
66
+ const actionsToTake = [
67
67
//{ value: 'cippcommand', label: 'Execute a CIPP Command' },
68
68
{ value : "becremediate" , label : "Execute a BEC Remediate" } ,
69
69
{ value : "disableuser" , label : "Disable the user in the log entry" } ,
@@ -523,7 +523,7 @@ const AlertWizard = () => {
523
523
formControl = { formControl }
524
524
multiple = { true }
525
525
creatable = { false }
526
- options = { actionstoTake }
526
+ options = { actionsToTake }
527
527
/>
528
528
</ Grid >
529
529
< Grid size = { 12 } sx = { { mt : 2 } } >
@@ -556,6 +556,9 @@ const AlertWizard = () => {
556
556
multiple = { false }
557
557
formControl = { formControl }
558
558
label = "Included Tenants for alert"
559
+ validators = { {
560
+ required : { value : true , message : "This field is required" } ,
561
+ } }
559
562
/>
560
563
</ Grid >
561
564
< CippFormCondition
You can’t perform that action at this time.
0 commit comments