BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
68de5dcb
Commit
68de5dcb
authored
Aug 30, 2017
by
Rubén Dávila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix error reported by Flay
parent
8ffbab21
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
8 deletions
+16
-8
visibility_level_helper.rb
app/helpers/visibility_level_helper.rb
+16
-8
No files found.
app/helpers/visibility_level_helper.rb
View file @
68de5dcb
...
...
@@ -89,11 +89,10 @@ module VisibilityLevelHelper
end
unless
project
.
visibility_level_allowed_by_group?
(
level
)
group
=
link_to
project
.
group
.
name
,
group_path
(
project
.
group
)
change_visiblity
=
link_to
'change the visibility'
,
edit_group_path
(
project
.
group
)
errors
=
visibility_level_errors_for_group
(
project
.
group
,
level_name
)
reasons
<<
"the visibility of
#{
group
}
is
#{
project
.
group
.
visibility
}
"
instructions
<<
" To make this project
#{
level_name
}
, you must first
#{
change_visiblity
}
of the parent group."
reasons
<<
errors
[
:reason
]
instructions
<<
errors
[
:instruction
]
end
reasons
=
reasons
.
any?
?
' because '
+
reasons
.
to_sentence
:
''
...
...
@@ -116,11 +115,10 @@ module VisibilityLevelHelper
end
unless
group
.
visibility_level_allowed_by_parent?
(
level
)
parent_group
=
link_to
group
.
parent
.
name
,
group_path
(
group
.
parent
)
change_visiblity
=
link_to
'change the visibility'
,
edit_group_path
(
group
.
parent
)
errors
=
visibility_level_errors_for_group
(
group
.
parent
,
level_name
)
reasons
<<
"the visibility of
#{
parent_group
}
is
#{
group
.
parent
.
visibility
}
"
instructions
<<
" To make this group
#{
level_name
}
, you must first
#{
change_visiblity
}
of the parent group."
reasons
<<
errors
[
:reason
]
instructions
<<
errors
[
:instruction
]
end
reasons
=
reasons
.
any?
?
' because '
+
reasons
.
to_sentence
:
''
...
...
@@ -163,4 +161,14 @@ module VisibilityLevelHelper
return
false
unless
form_model
.
respond_to?
(
:visibility_level_allowed?
)
!
form_model
.
visibility_level_allowed?
(
level
)
end
private
def
visibility_level_errors_for_group
(
group
,
level_name
)
group
=
link_to
group
.
name
,
group_path
(
group
)
change_visiblity
=
link_to
'change the visibility'
,
edit_group_path
(
group
)
{
reason:
"the visibility of
#{
group
}
is
#{
group
.
visibility
}
"
,
instruction:
" To make this group
#{
level_name
}
, you must first
#{
change_visiblity
}
of the parent group."
}
end
end
Write
Preview
Markdown
is supported
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