Merge branch 'use_full_path_in_project_avatar_url_webhook' into 'master'

Use full path of project's avatar in webhooks

Closes #36539

See merge request !13649
This commit is contained in:
Robert Speicher 2017-08-23 22:29:02 +00:00
commit 19dfd9e9d6
2 changed files with 6 additions and 1 deletions

View File

@ -1017,7 +1017,7 @@ class Project < ActiveRecord::Base
name: name,
description: description,
web_url: web_url,
avatar_url: avatar_url,
avatar_url: avatar_url(only_path: false),
git_ssh_url: ssh_url_to_repo,
git_http_url: http_url_to_repo,
namespace: namespace.name,

View File

@ -0,0 +1,5 @@
---
title: Use full path of project's avatar in webhooks
merge_request: 13649
author: Vitaliy @blackst0ne Klachkov
type: changed