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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
e1ba0058
Commit
e1ba0058
authored
Jun 28, 2017
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zh nich catches 2
parent
8889bb63
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
app/controllers/projects/pipeline_schedules_controller.rb
app/controllers/projects/pipeline_schedules_controller.rb
+2
-2
app/policies/ci/pipeline_schedule_policy.rb
app/policies/ci/pipeline_schedule_policy.rb
+5
-1
No files found.
app/controllers/projects/pipeline_schedules_controller.rb
View file @
e1ba0058
class
Projects::PipelineSchedulesController
<
Projects
::
ApplicationController
before_action
:schedule
,
only:
[
:edit
,
:update
,
:destroy
,
:take_ownership
]
before_action
:schedule
,
except:
[
:index
,
:new
,
:create
]
before_action
:authorize_read_pipeline_schedule!
before_action
:authorize_create_pipeline_schedule!
,
only:
[
:new
,
:create
]
before_action
:authorize_update_pipeline_schedule!
,
only:
[
:edit
,
:take_ownership
,
:upd
ate
]
before_action
:authorize_update_pipeline_schedule!
,
except:
[
:index
,
:new
,
:cre
ate
]
before_action
:authorize_admin_pipeline_schedule!
,
only:
[
:destroy
]
def
index
...
...
app/policies/ci/pipeline_schedule_policy.rb
View file @
e1ba0058
...
...
@@ -5,7 +5,7 @@ module Ci
def
rules
super
if
owned_by_developer?
&&
pipeline_schedule
.
owner
!=
user
if
owned_by_developer?
&&
owned_by_another?
cannot!
:update_pipeline_schedule
end
end
...
...
@@ -15,5 +15,9 @@ module Ci
def
owned_by_developer?
pipeline_schedule
.
project
.
team
.
developer?
(
user
)
end
def
owned_by_another?
!
pipeline_schedule
.
owned_by?
(
user
)
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