Refactor nested group related code
* Simplify code around group parent access check * Rename 'Nested groups' to 'Subgroups' tab at group#show page Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
10de4e3bb6
commit
283e868ef5
3 changed files with 7 additions and 14 deletions
|
@ -12,18 +12,12 @@ module Groups
|
|||
return @group
|
||||
end
|
||||
|
||||
parent_id = params[:parent_id]
|
||||
|
||||
if parent_id
|
||||
parent = Group.find(parent_id)
|
||||
|
||||
unless can?(current_user, :admin_group, parent)
|
||||
@group.parent_id = nil
|
||||
if @group.parent && !can?(current_user, :admin_group, @group.parent)
|
||||
@group.parent = nil
|
||||
@group.errors.add(:parent_id, 'manage access required to create subgroup')
|
||||
|
||||
return @group
|
||||
end
|
||||
end
|
||||
|
||||
@group.name ||= @group.path.dup
|
||||
@group.save
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
- if @nested_groups.present?
|
||||
%li
|
||||
= link_to "#groups", 'data-toggle' => 'tab' do
|
||||
Nested Groups
|
||||
Subgroups
|
||||
.nav-controls
|
||||
= form_tag request.path, method: :get, class: 'project-filter-form', id: 'project-filter-form' do |f|
|
||||
= search_field_tag :filter_projects, nil, placeholder: 'Filter by name', class: 'projects-list-filter form-control', spellcheck: false
|
||||
|
@ -55,5 +55,4 @@
|
|||
- if @nested_groups.present?
|
||||
.tab-pane#groups
|
||||
%ul.content-list
|
||||
- @nested_groups.each do |group|
|
||||
= render 'shared/groups/group', group: group
|
||||
= render partial: 'shared/groups/group', collection: @nested_groups
|
||||
|
|
|
@ -115,7 +115,7 @@ feature 'Group', feature: true do
|
|||
|
||||
it 'has nested groups tab with nested groups inside' do
|
||||
visit path
|
||||
click_link 'Nested Groups'
|
||||
click_link 'Subgroups'
|
||||
|
||||
expect(page).to have_content(nested_group.full_name)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue