diff options
Diffstat (limited to 'doc/user')
-rw-r--r-- | doc/user/project/integrations/webhooks.md | 52 | ||||
-rw-r--r-- | doc/user/project/issues/index.md | 6 |
2 files changed, 43 insertions, 15 deletions
diff --git a/doc/user/project/integrations/webhooks.md b/doc/user/project/integrations/webhooks.md index 9423929d72f..6dd2fd3b61b 100644 --- a/doc/user/project/integrations/webhooks.md +++ b/doc/user/project/integrations/webhooks.md @@ -252,7 +252,7 @@ X-Gitlab-Event: Tag Push Hook } ``` -### Issues events +### Issue events Triggered when a new issue is created or an existing issue was updated/closed/reopened. @@ -267,10 +267,12 @@ X-Gitlab-Event: Issue Hook ```json { "object_kind": "issue", + "event_type": "issue", "user": { "name": "Administrator", "username": "root", - "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon" + "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon", + "email": "admin@example.com" }, "project": { "id": 1, @@ -284,17 +286,12 @@ X-Gitlab-Event: Issue Hook "visibility_level":20, "path_with_namespace":"gitlabhq/gitlab-test", "default_branch":"master", + "ci_config_path": null, "homepage":"http://example.com/gitlabhq/gitlab-test", "url":"http://example.com/gitlabhq/gitlab-test.git", "ssh_url":"git@example.com:gitlabhq/gitlab-test.git", "http_url":"http://example.com/gitlabhq/gitlab-test.git" }, - "repository": { - "name": "Gitlab Test", - "url": "http://example.com/gitlabhq/gitlab-test.git", - "description": "Aut reprehenderit ut est.", - "homepage": "http://example.com/gitlabhq/gitlab-test" - }, "object_attributes": { "id": 301, "title": "New API: create/update/delete file", @@ -304,14 +301,45 @@ X-Gitlab-Event: Issue Hook "project_id": 14, "created_at": "2013-12-03T17:15:43Z", "updated_at": "2013-12-03T17:15:43Z", - "position": 0, - "branch_name": null, + "updated_by_id": 1, + "last_edited_at": null, + "last_edited_by_id": null, + "relative_position": 0, "description": "Create new API for manipulations with repository", "milestone_id": null, - "state": "opened", + "state_id": 1, + "confidential": false, + "discussion_locked": true, + "due_date": null, + "moved_to_id": null, + "duplicated_to_id": null, + "time_estimate": 0, + "total_time_spent": 0, + "human_total_time_spent": null, + "human_time_estimate": null, + "weight": null, "iid": 23, "url": "http://example.com/diaspora/issues/23", - "action": "open" + "state": "opened", + "action": "open", + "labels": [{ + "id": 206, + "title": "API", + "color": "#ffffff", + "project_id": 14, + "created_at": "2013-12-03T17:15:43Z", + "updated_at": "2013-12-03T17:15:43Z", + "template": false, + "description": "API related issues", + "type": "ProjectLabel", + "group_id": 41 + }] + }, + "repository": { + "name": "Gitlab Test", + "url": "http://example.com/gitlabhq/gitlab-test.git", + "description": "Aut reprehenderit ut est.", + "homepage": "http://example.com/gitlabhq/gitlab-test" }, "assignees": [{ "name": "User1", diff --git a/doc/user/project/issues/index.md b/doc/user/project/issues/index.md index 7bca62792ac..f8608c4b711 100644 --- a/doc/user/project/issues/index.md +++ b/doc/user/project/issues/index.md @@ -182,12 +182,12 @@ To help you track the status of your issues, you can assign a status to each iss #### Enable issue health status -This feature comes with the `:save_issuable_health_status` feature flag disabled by default. However, in some cases -this feature is incompatible with old configuration. To turn on the feature while configuration is +This feature comes with the `:save_issuable_health_status` feature flag enabled by default. However, in some cases +this feature is incompatible with old configuration. To turn off the feature while configuration is migrated, ask a GitLab administrator with Rails console access to run the following command: ```ruby -Feature.enable(:save_issuable_health_status) +Feature.disable(:save_issuable_health_status) ``` ## Other Issue actions |