diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-06-21 10:11:07 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-06-23 16:47:03 +0200 |
commit | aa05fbc05d794ad94b9f377d3cb761a42d6c4533 (patch) | |
tree | 1ab6b16dec95505fff82cc58ba8f2c4a9f804152 /app/models/ability.rb | |
parent | 9ee8693fdabc3368dde324d3d5db7a5122f1daba (diff) | |
download | gitlab-ce-aa05fbc05d794ad94b9f377d3cb761a42d6c4533.tar.gz |
Fix 404 for pipelines
Diffstat (limited to 'app/models/ability.rb')
-rw-r--r-- | app/models/ability.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/ability.rb b/app/models/ability.rb index 9c58b956007..f5950879ccb 100644 --- a/app/models/ability.rb +++ b/app/models/ability.rb @@ -196,7 +196,8 @@ class Ability @public_project_rules ||= project_guest_rules + [ :download_code, :fork_project, - :read_commit_status + :read_commit_status, + :read_pipeline ] end |