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
3adfee1c
Commit
3adfee1c
authored
Oct 23, 2015
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow developer to manage builds
parent
127836dd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
10 deletions
+17
-10
application_controller.rb
app/controllers/ci/application_controller.rb
+0
-8
builds_controller.rb
app/controllers/projects/builds_controller.rb
+7
-1
commit_controller.rb
app/controllers/projects/commit_controller.rb
+10
-1
No files found.
app/controllers/ci/application_controller.rb
View file @
3adfee1c
...
...
@@ -8,14 +8,6 @@ module Ci
private
def
authenticate_public_page!
unless
project
.
public
authenticate_user!
return
access_denied!
unless
can?
(
current_user
,
:read_project
,
gl_project
)
end
end
def
authenticate_token!
unless
project
.
valid_token?
(
params
[
:token
])
return
head
(
403
)
...
...
app/controllers/projects/builds_controller.rb
View file @
3adfee1c
...
...
@@ -2,7 +2,7 @@ class Projects::BuildsController < Projects::ApplicationController
before_action
:ci_project
before_action
:build
,
except:
[
:index
,
:cancel_all
]
before_action
:authorize_
admin_project
!
,
except:
[
:index
,
:show
,
:status
]
before_action
:authorize_
manage_builds
!
,
except:
[
:index
,
:show
,
:status
]
layout
"project"
...
...
@@ -74,4 +74,10 @@ class Projects::BuildsController < Projects::ApplicationController
def
build_path
(
build
)
namespace_project_build_path
(
build
.
gl_project
.
namespace
,
build
.
gl_project
,
build
)
end
def
authorize_manage_builds!
unless
can?
(
current_user
,
:manage_builds
,
project
)
return
page_404
end
end
end
app/controllers/projects/commit_controller.rb
View file @
3adfee1c
...
...
@@ -4,7 +4,8 @@
class
Projects
::
CommitController
<
Projects
::
ApplicationController
# Authorize
before_action
:require_non_empty_project
before_action
:authorize_download_code!
before_action
:authorize_download_code!
,
except:
[
:cancel_builds
]
before_action
:authorize_manage_builds!
,
only:
[
:cancel_builds
]
before_action
:commit
def
show
...
...
@@ -55,4 +56,12 @@ class Projects::CommitController < Projects::ApplicationController
def
commit
@commit
||=
@project
.
commit
(
params
[
:id
])
end
private
def
authorize_manage_builds!
unless
can?
(
current_user
,
:manage_builds
,
project
)
return
page_404
end
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