Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCiro Santilli <ciro.santilli@gmail.com>2014-10-13 23:31:49 +0400
committerCiro Santilli <ciro.santilli@gmail.com>2014-10-13 23:31:49 +0400
commit4d0d5e79ba4317cedfb2b0304ac5d376ad781b1a (patch)
treefdbf97a50f8c8ccde579c07e340079a50cf407ef /app/controllers/projects/blame_controller.rb
parente261de255dfff71f5acc7d33f339a30a3cb32ab9 (diff)
Factor authorize_push! and authorize_code_access!
with existing method_missing. Pattern already used extensively, so let's be consistent and use it everywhere.
Diffstat (limited to 'app/controllers/projects/blame_controller.rb')
-rw-r--r--app/controllers/projects/blame_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/blame_controller.rb b/app/controllers/projects/blame_controller.rb
index a3c41301676..bad06e7aa2d 100644
--- a/app/controllers/projects/blame_controller.rb
+++ b/app/controllers/projects/blame_controller.rb
@@ -4,7 +4,7 @@ class Projects::BlameController < Projects::ApplicationController
# Authorize
before_filter :authorize_read_project!
- before_filter :authorize_code_access!
+ before_filter :authorize_download_code!
before_filter :require_non_empty_project
def show