Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Privacy
Imprint
Contact
Login methods
Sign in
Toggle navigation
Menu
Open sidebar
projects.thm.de
GitLab FOSS
Commits
62ac42b7
Commit
62ac42b7
authored
Apr 28, 2015
by
Daniel Gerhardt
Browse files
Forbid creation of groups with a path length < 5
This restriction does not apply to admins.
parent
707be803
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/controllers/groups_controller.rb
View file @
62ac42b7
...
...
@@ -24,6 +24,8 @@ class GroupsController < Groups::ApplicationController
before_action
:user_actions
,
only:
[
:show
]
before_filter
:validate_name
,
only: :create
skip_cross_project_access_check
:index
,
:new
,
:create
,
:edit
,
:update
,
:destroy
,
:projects
# When loading show as an atom feed, we render events that could leak cross
...
...
@@ -193,6 +195,14 @@ def user_actions
end
end
def
validate_name
@group
=
Group
.
new
(
group_params
)
unless
@group
.
path
.
empty?
||
@group
.
path
.
length
>
4
||
current_user
.
admin?
flash
.
now
[
:alert
]
=
'Path must have at least a length of 5.'
render
action:
"new"
end
end
def
build_canonical_path
(
group
)
return
group_path
(
group
)
if
action_name
==
'show'
# root group path
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment