Skip to content

Commit

Permalink
Merge pull request #2463 from kris6673/dev
Browse files Browse the repository at this point in the history
Update Activity Based Timeout standard to have options
  • Loading branch information
KelvinTegelaar committed May 26, 2024
2 parents 1fa566f + b217bcf commit 1b4a459
Showing 1 changed file with 33 additions and 5 deletions.
38 changes: 33 additions & 5 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@
"label": "Show header"
},
{
"type":"boolean",
"name":"standards.Branding.isFooterShown",
"label":"Show footer"
"type": "boolean",
"name": "standards.Branding.isFooterShown",
"label": "Show footer"
}
],
"label": "Set branding for the tenant",
Expand Down Expand Up @@ -156,8 +156,36 @@
"cat": "Global Standards",
"tag": ["mediumimpact", "CIS", "spo_idle_session_timeout"],
"helpText": "Enables and sets Idle session timeout for Microsoft 365 to 1 hour. This policy affects most M365 web apps",
"addedComponent": [],
"label": "Enable 1 hour Activity based Timeout",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.ActivityBasedTimeout.timeout",
"values": [
{
"label": "1 Hour",
"value": "01:00:00"
},
{
"label": "3 Hours",
"value": "03:00:00"
},
{
"label": "6 Hours",
"value": "06:00:00"
},
{
"label": "12 Hours",
"value": "12:00:00"
},
{
"label": "24 Hours",
"value": "1.00:00:00"
}
]
}
],
"label": "Enable Activity based Timeout",
"impact": "Medium Impact",
"impactColour": "warning"
},
Expand Down

0 comments on commit 1b4a459

Please sign in to comment.