Remove project transfer page since we already have multiple owners for group
This commit is contained in:
parent
02cf9aa687
commit
3cb663f5c9
2 changed files with 1 additions and 22 deletions
|
@ -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"
|
||||
|
|
|
@ -9,8 +9,6 @@
|
|||
= link_to '#tab-projects', 'data-toggle' => 'tab' do
|
||||
%i.icon-folder-close
|
||||
Projects
|
||||
%li
|
||||
= link_to 'Transfer', '#tab-transfer', 'data-toggle' => 'tab'
|
||||
%li
|
||||
= link_to 'Remove', '#tab-remove', 'data-toggle' => 'tab'
|
||||
|
||||
|
@ -65,17 +63,6 @@
|
|||
- if @group.projects.blank?
|
||||
%p.nothing_here_message This group has no projects yet
|
||||
|
||||
.tab-pane#tab-transfer
|
||||
.ui-box.ui-box-danger
|
||||
.title Transfer group
|
||||
.ui-box-body
|
||||
%p
|
||||
Transferring group will cause loss of admin control over group and all child projects
|
||||
= form_for @group do |f|
|
||||
= users_select_tag(:'group[owner_id]')
|
||||
%hr
|
||||
= f.submit 'Transfer group', class: "btn btn-small btn-remove"
|
||||
|
||||
.tab-pane#tab-remove
|
||||
.ui-box.ui-box-danger
|
||||
.title Remove group
|
||||
|
|
Loading…
Reference in a new issue