Merge branch 'fix_webhook_user_avatar_on_push' into 'master'
Use full URL of user avatar on webhook push Closes #34339 See merge request gitlab-org/gitlab-ce!14706
This commit is contained in:
commit
eb4296ba6a
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ module Gitlab
|
||||||
user_name: user.name,
|
user_name: user.name,
|
||||||
user_username: user.username,
|
user_username: user.username,
|
||||||
user_email: user.email,
|
user_email: user.email,
|
||||||
user_avatar: user.avatar_url,
|
user_avatar: user.avatar_url(only_path: false),
|
||||||
project_id: project.id,
|
project_id: project.id,
|
||||||
project: project.hook_attrs,
|
project: project.hook_attrs,
|
||||||
commits: commit_attrs,
|
commits: commit_attrs,
|
||||||
|
|
Loading…
Reference in a new issue