FEATURE: created edit and delete flags (#27484)

Allow admins to create edit and delete flags.
This commit is contained in:
Krzysztof Kotlarek
2024-07-03 08:45:37 +10:00
committed by GitHub
parent a86590ffd6
commit c3fadc7330
43 changed files with 1112 additions and 42 deletions

View File

@@ -356,6 +356,12 @@
},
"enabled": {
"type": "boolean"
},
"applies_to": {
"type": "array"
},
"is_used": {
"type": "boolean"
}
},
"required": [
@@ -366,7 +372,9 @@
"short_description",
"is_flag",
"is_custom_flag",
"enabled"
"enabled",
"applies_to",
"is_used"
]
}
},
@@ -400,6 +408,12 @@
},
"enabled": {
"type": "boolean"
},
"applies_to": {
"type": "array"
},
"is_used": {
"type": "boolean"
}
},
"required": [
@@ -410,7 +424,9 @@
"short_description",
"is_flag",
"is_custom_flag",
"enabled"
"enabled",
"applies_to",
"is_used"
]
}
},
@@ -823,6 +839,9 @@
"denied_emojis" : {
"type": "array"
},
"valid_flag_applies_to_types" : {
"type": "array"
},
"navigation_menu_site_top_tags": {
"type": "array"
}