diff options
Diffstat (limited to 'lib/api/group_avatar.rb')
-rw-r--r-- | lib/api/group_avatar.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/api/group_avatar.rb b/lib/api/group_avatar.rb new file mode 100644 index 00000000000..ddf6787f913 --- /dev/null +++ b/lib/api/group_avatar.rb @@ -0,0 +1,21 @@ +# frozen_string_literal: true + +module API + class GroupAvatar < ::API::Base + helpers Helpers::GroupsHelpers + + feature_category :subgroups + + resource :groups do + desc 'Download the group avatar' do + detail 'This feature was introduced in GitLab 14.0' + end + params do + requires :id, type: String, desc: 'The group id' + end + get ':id/avatar' do + present_carrierwave_file!(user_group.avatar) + end + end + end +end |