Skip to content

fix: make some standards required input #3556

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

Merged
merged 1 commit into from
Feb 4, 2025
Merged
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
17 changes: 17 additions & 0 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,7 @@
"addedComponent": [
{
"type": "autoComplete",
"required": true,
"multiple": false,
"label": "Who can send invites?",
"name": "standards.GuestInvite.allowInvitesFrom",
Expand Down Expand Up @@ -1871,6 +1872,7 @@
},
{
"type": "autoComplete",
"required": true,
"multiple": false,
"label": "Spam Action",
"name": "standards.SpamFilterPolicy.SpamAction",
Expand All @@ -1887,6 +1889,7 @@
},
{
"type": "autoComplete",
"required": true,
"multiple": false,
"label": "Spam Quarantine Tag",
"name": "standards.SpamFilterPolicy.SpamQuarantineTag",
Expand All @@ -1907,6 +1910,7 @@
},
{
"type": "autoComplete",
"required": true,
"multiple": false,
"label": "High Confidence Spam Action",
"name": "standards.SpamFilterPolicy.HighConfidenceSpamAction",
Expand All @@ -1923,6 +1927,7 @@
},
{
"type": "autoComplete",
"required": true,
"multiple": false,
"label": "High Confidence Spam Quarantine Tag",
"name": "standards.SpamFilterPolicy.HighConfidenceSpamQuarantineTag",
Expand All @@ -1943,6 +1948,7 @@
},
{
"type": "autoComplete",
"required": true,
"multiple": false,
"label": "Bulk Spam Action",
"name": "standards.SpamFilterPolicy.BulkSpamAction",
Expand All @@ -1959,6 +1965,7 @@
},
{
"type": "autoComplete",
"required": true,
"multiple": false,
"label": "Bulk Quarantine Tag",
"name": "standards.SpamFilterPolicy.BulkQuarantineTag",
Expand All @@ -1979,6 +1986,7 @@
},
{
"type": "autoComplete",
"required": true,
"multiple": false,
"label": "Phish Spam Action",
"name": "standards.SpamFilterPolicy.PhishSpamAction",
Expand All @@ -1995,6 +2003,7 @@
},
{
"type": "autoComplete",
"required": true,
"multiple": false,
"label": "Phish Quarantine Tag",
"name": "standards.SpamFilterPolicy.PhishQuarantineTag",
Expand All @@ -2015,6 +2024,7 @@
},
{
"type": "autoComplete",
"required": true,
"multiple": false,
"label": "High Confidence Phish Quarantine Tag",
"name": "standards.SpamFilterPolicy.HighConfidencePhishQuarantineTag",
Expand Down Expand Up @@ -2138,6 +2148,7 @@
"addedComponent": [
{
"type": "autoComplete",
"required": true,
"multiple": false,
"name": "standards.IntuneComplianceSettings.secureByDefault",
"label": "Mark devices with no compliance policy as",
Expand Down Expand Up @@ -2588,6 +2599,7 @@
"addedComponent": [
{
"type": "autoComplete",
"required": true,
"multiple": false,
"name": "standards.TeamsGlobalMeetingPolicy.DesignatedPresenterRoleMode",
"label": "Default value of the `Who can present?`",
Expand Down Expand Up @@ -2617,6 +2629,7 @@
},
{
"type": "autoComplete",
"required": true,
"multiple": false,
"name": "standards.TeamsGlobalMeetingPolicy.MeetingChatEnabledType",
"label": "Meeting chat policy",
Expand Down Expand Up @@ -2708,6 +2721,8 @@
"addedComponent": [
{
"type": "autoComplete",
"required": true,
"multiple": false,
"name": "standards.TeamsEnrollUser.EnrollUserOverride",
"label": "Voice and Face Enrollment",
"options": [
Expand Down Expand Up @@ -2776,6 +2791,7 @@
},
{
"type": "autoComplete",
"required" : true,
"multiple": false,
"name": "standards.TeamsFederationConfiguration.DomainControl",
"label": "Communication Mode",
Expand Down Expand Up @@ -2844,6 +2860,7 @@
},
{
"type": "autoComplete",
"required": true,
"multiple": false,
"name": "standards.TeamsMessagingPolicy.ReadReceiptsEnabledType",
"label": "Read Receipts Enabled Type",
Expand Down
Loading