Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
66b6d82a
Commit
66b6d82a
authored
Apr 18, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use guard clause to check ability to share project
parent
d177abb3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
app/controllers/projects/group_links_controller.rb
app/controllers/projects/group_links_controller.rb
+4
-7
No files found.
app/controllers/projects/group_links_controller.rb
View file @
66b6d82a
...
@@ -8,14 +8,11 @@ class Projects::GroupLinksController < Projects::ApplicationController
...
@@ -8,14 +8,11 @@ class Projects::GroupLinksController < Projects::ApplicationController
def
create
def
create
group
=
Group
.
find
(
params
[
:link_group_id
])
group
=
Group
.
find
(
params
[
:link_group_id
])
return
render_404
unless
can?
(
current_user
,
:read_group
,
group
)
if
can?
(
current_user
,
:read_group
,
group
)
project
.
project_group_links
.
create
(
project
.
project_group_links
.
create
(
group:
group
,
group_access:
params
[
:link_group_access
]
group:
group
,
group_access:
params
[
:link_group_access
]
)
)
else
return
render_404
end
redirect_to
namespace_project_group_links_path
(
project
.
namespace
,
project
)
redirect_to
namespace_project_group_links_path
(
project
.
namespace
,
project
)
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