Skip to content

Commit

Permalink
Merge pull request KelvinTegelaar#2480 from kris6673/shorten-meetings
Browse files Browse the repository at this point in the history
Add shorten meetings standard
  • Loading branch information
KelvinTegelaar committed May 27, 2024
2 parents fe06f78 + a5505d3 commit c6265ac
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 2 deletions.
42 changes: 42 additions & 0 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -830,6 +830,48 @@
"impact": "Low Impact",
"impactColour": "info"
},
{
"name": "standards.ShortenMeetings",
"cat": "Exchange Standards",
"tag": ["mediumimpact"],
"helpText": "Sets the shorten meetings settings on a tenant level. This will shorten meetings by the selected amount of minutes. Valid values are 0 to 29. Short meetings are under 60 minutes, long meetings are over 60 minutes.",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.ShortenMeetings.ShortenEventScopeDefault",
"values": [
{
"label": "Disabled/None",
"value": "None"
},
{
"label": "End early",
"value": "EndEarly"
},
{
"label": "Start late",
"value": "StartLate"
}
]
},
{
"type": "number",
"name": "standards.ShortenMeetings.DefaultMinutesToReduceShortEventsBy",
"label": "Minutes to reduce short calendar events by (Default is 5)",
"default": 5
},
{
"type": "number",
"name": "standards.ShortenMeetings.DefaultMinutesToReduceLongEventsBy",
"label": "Minutes to reduce long calendar events by (Default is 10)",
"default": 10
}
],
"label": "Set shorten meetings state",
"impact": "Medium Impact",
"impactColour": "warning"
},
{
"name": "standards.DisableOutlookAddins",
"cat": "Exchange Standards",
Expand Down
3 changes: 1 addition & 2 deletions src/views/home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ import CippCopyToClipboard from 'src/components/utilities/CippCopyToClipboard'
import { CChart } from '@coreui/react-chartjs'
import { getStyle } from '@coreui/utils'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { Link } from 'react-router-dom'
import { useNavigate } from 'react-router-dom'
import { useNavigate, Link } from 'react-router-dom'
import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat'
import { ModalService } from 'src/components/utilities'

Expand Down

0 comments on commit c6265ac

Please sign in to comment.