Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add shorten meetings standard #2480

Merged
merged 1 commit into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading