mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
9 lines
171 B
Ruby
9 lines
171 B
Ruby
class Groups::AvatarsController < Groups::ApplicationController
|
|
def destroy
|
|
@group.remove_avatar!
|
|
@group.save
|
|
|
|
redirect_to edit_group_path(@group)
|
|
end
|
|
end
|