diff options
author | Tommy Beadle <tbeadle@arbor.net> | 2016-01-07 12:54:54 -0500 |
---|---|---|
committer | Tommy Beadle <tbeadle@arbor.net> | 2016-01-07 12:54:54 -0500 |
commit | 1f64332e11949a5954b1e4ac7c6667b03ea70a0b (patch) | |
tree | a476e713540e7d4ee43d45eeb47fbb6030d0e7a6 /doc/system_hooks | |
parent | dada25d4472ec9ad601447fdd12da2301ac9ee79 (diff) | |
download | gitlab-ce-1f64332e11949a5954b1e4ac7c6667b03ea70a0b.tar.gz |
Include user_username in user_(add_to/remove_from)_(project/group) system hooks.
Diffstat (limited to 'doc/system_hooks')
-rw-r--r-- | doc/system_hooks/system_hooks.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/system_hooks/system_hooks.md b/doc/system_hooks/system_hooks.md index 0539f30e802..612376e3a49 100644 --- a/doc/system_hooks/system_hooks.md +++ b/doc/system_hooks/system_hooks.md @@ -96,6 +96,7 @@ X-Gitlab-Event: System Hook "project_path_with_namespace": "jsmith/storecloud", "user_email": "johnsmith@gmail.com", "user_name": "John Smith", + "user_username": "johnsmith", "user_id": 41, "project_visibility": "private", } @@ -115,6 +116,7 @@ X-Gitlab-Event: System Hook "project_path_with_namespace": "jsmith/storecloud", "user_email": "johnsmith@gmail.com", "user_name": "John Smith", + "user_username": "johnsmith", "user_id": 41, "project_visibility": "private", } @@ -217,6 +219,7 @@ X-Gitlab-Event: System Hook "group_path": "storecloud", "user_email": "johnsmith@gmail.com", "user_name": "John Smith", + "user_username": "johnsmith", "user_id": 41 } ``` @@ -233,6 +236,7 @@ X-Gitlab-Event: System Hook "group_path": "storecloud", "user_email": "johnsmith@gmail.com", "user_name": "John Smith", + "user_username": "johnsmith", "user_id": 41 } ``` |