diff options
author | Shinya Maeda <shinya@gitlab.com> | 2017-06-28 21:42:13 +0900 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2017-07-05 18:38:28 +0900 |
commit | 5c91e10b9e1a3411075bd6597532be5655aa07c1 (patch) | |
tree | 19cfb80015433516e4aeba77f60437dd467eeffc /app/policies | |
parent | ad30a5a9bba93dc771e70608d5afd06611437770 (diff) | |
download | gitlab-ce-5c91e10b9e1a3411075bd6597532be5655aa07c1.tar.gz |
zh nich catches 2
Diffstat (limited to 'app/policies')
-rw-r--r-- | app/policies/ci/pipeline_schedule_policy.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/policies/ci/pipeline_schedule_policy.rb b/app/policies/ci/pipeline_schedule_policy.rb index 9945fec3aaa..0e26b6e688a 100644 --- a/app/policies/ci/pipeline_schedule_policy.rb +++ b/app/policies/ci/pipeline_schedule_policy.rb @@ -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 |