diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-26 10:33:06 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-26 10:33:06 +0300 |
commit | 3cb663f5c9359d809ecc82cc29a62d7658a48fbe (patch) | |
tree | a989b4ab97dfea615c6d0f4a511b8b21d9b5f7e3 /app/controllers/groups_controller.rb | |
parent | 02cf9aa6873c4c2e35dfedc8d4c6ad375bd8a219 (diff) | |
download | gitlab-ce-3cb663f5c9359d809ecc82cc29a62d7658a48fbe.tar.gz |
Remove project transfer page since we already have multiple owners for group
Diffstat (limited to 'app/controllers/groups_controller.rb')
-rw-r--r-- | app/controllers/groups_controller.rb | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb index 9dc9afe9e67..caf8ef85e87 100644 --- a/app/controllers/groups_controller.rb +++ b/app/controllers/groups_controller.rb @@ -73,15 +73,7 @@ class GroupsController < ApplicationController end def update - group_params = params[:group].dup - owner_id = group_params.delete(:owner_id) - - if owner_id - @group.owner = User.find(owner_id) - @group.save - end - - if @group.update_attributes(group_params) + if @group.update_attributes(params[:group]) redirect_to @group, notice: 'Group was successfully updated.' else render action: "edit" |