mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 12:46:07 +10:00
11 lines
216 B
Ruby
11 lines
216 B
Ruby
class Groups::AvatarsController < ApplicationController
|
|
def destroy
|
|
@group = Group.find_by(path: params[:group_id])
|
|
@group.remove_avatar!
|
|
|
|
@group.save
|
|
|
|
redirect_to edit_group_path(@group)
|
|
end
|
|
end
|