diff options
author | Jamie Schembri <jamie@schembri.me> | 2018-07-09 17:44:09 +0200 |
---|---|---|
committer | Jamie Schembri <jamie@schembri.me> | 2018-07-09 19:03:44 +0200 |
commit | 38d407d7a7fd07888cbfda26360cd0a1c4972ec5 (patch) | |
tree | 8bfdf191403241d215cea6168a87fbdba2e20827 /lib/api | |
parent | a0935bf267b18c14a120809acd56a794c73121e3 (diff) | |
download | gitlab-ce-38d407d7a7fd07888cbfda26360cd0a1c4972ec5.tar.gz |
Fix #48537 - Update avatar only via the projects API
Diffstat (limited to 'lib/api')
-rw-r--r-- | lib/api/projects.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/api/projects.rb b/lib/api/projects.rb index b83da00502d..8273abe48c9 100644 --- a/lib/api/projects.rb +++ b/lib/api/projects.rb @@ -260,7 +260,8 @@ module API :snippets_enabled, :tag_list, :visibility, - :wiki_enabled + :wiki_enabled, + :avatar ] optional :name, type: String, desc: 'The name of the project' optional :default_branch, type: String, desc: 'The default branch of the project' |