Commit 237ddd60244526ab5869c78cc086cec637544399
1 parent
4645f464
Exists in
spb-stable
and in
3 other branches
Improve authorization for new/edit blob pages
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
4 changed files
with
4 additions
and
1 deletions
Show diff stats
app/controllers/projects/blob_controller.rb
... | ... | @@ -6,6 +6,7 @@ class Projects::BlobController < Projects::ApplicationController |
6 | 6 | before_filter :authorize_read_project! |
7 | 7 | before_filter :authorize_code_access! |
8 | 8 | before_filter :require_non_empty_project |
9 | + before_filter :authorize_push!, only: [:destroy] | |
9 | 10 | |
10 | 11 | before_filter :blob |
11 | 12 | ... | ... |
app/controllers/projects/edit_tree_controller.rb
app/controllers/projects/new_tree_controller.rb
app/views/projects/tree/_tree.html.haml
... | ... | @@ -9,7 +9,7 @@ |
9 | 9 | = link_to truncate(title, length: 40), project_tree_path(@project, path) |
10 | 10 | - else |
11 | 11 | = link_to title, '#' |
12 | - - if @repository.branch_names.include?(@ref) | |
12 | + - if current_user && @repository.branch_names.include?(@ref) && current_user.can?(:push_code, @project) | |
13 | 13 | %li |
14 | 14 | = link_to project_new_tree_path(@project, @id), title: 'New file', id: 'new-file-link' do |
15 | 15 | %small | ... | ... |