Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/public_api/v4/system_hook.json')
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/system_hook.json8
1 files changed, 6 insertions, 2 deletions
diff --git a/spec/fixtures/api/schemas/public_api/v4/system_hook.json b/spec/fixtures/api/schemas/public_api/v4/system_hook.json
index f992bc8b809..3fe3e0d658e 100644
--- a/spec/fixtures/api/schemas/public_api/v4/system_hook.json
+++ b/spec/fixtures/api/schemas/public_api/v4/system_hook.json
@@ -8,7 +8,9 @@
"tag_push_events",
"merge_requests_events",
"repository_update_events",
- "enable_ssl_verification"
+ "enable_ssl_verification",
+ "alert_status",
+ "disabled_until"
],
"properties": {
"id": { "type": "integer" },
@@ -18,7 +20,9 @@
"tag_push_events": { "type": "boolean" },
"merge_requests_events": { "type": "boolean" },
"repository_update_events": { "type": "boolean" },
- "enable_ssl_verification": { "type": "boolean" }
+ "enable_ssl_verification": { "type": "boolean" },
+ "alert_status": { "type": "string", "enum": ["executable", "disabled", "temporarily_disabled"] },
+ "disabled_until": { "type": ["string", "null"] }
},
"additionalProperties": false
}