diff options
Diffstat (limited to 'doc/api/notification_settings.md')
-rw-r--r-- | doc/api/notification_settings.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/api/notification_settings.md b/doc/api/notification_settings.md index e21e73c7dac..80b110e0552 100644 --- a/doc/api/notification_settings.md +++ b/doc/api/notification_settings.md @@ -32,6 +32,7 @@ reassign_merge_request merge_merge_request failed_pipeline success_pipeline +new_epic ``` ## Global notification settings @@ -85,6 +86,7 @@ curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab. | `merge_merge_request` | boolean | no | Enable/disable this notification | | `failed_pipeline` | boolean | no | Enable/disable this notification | | `success_pipeline` | boolean | no | Enable/disable this notification | +| `new_epic` | boolean | no | Enable/disable this notification ([Introduced][ee-6626] in 11.3) | Example response: @@ -153,6 +155,7 @@ curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab. | `merge_merge_request` | boolean | no | Enable/disable this notification | | `failed_pipeline` | boolean | no | Enable/disable this notification | | `success_pipeline` | boolean | no | Enable/disable this notification | +| `new_epic` | boolean | no | Enable/disable this notification ([Introduced][ee-6626] in 11.3) | Example responses: @@ -177,9 +180,11 @@ Example responses: "reassign_merge_request": false, "merge_merge_request": false, "failed_pipeline": false, - "success_pipeline": false + "success_pipeline": false, + "new_epic": false } } ``` [ce-5632]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5632 +[ee-6626]: https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/6626 |