summaryrefslogtreecommitdiff
path: root/app/controllers/projects/blame_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/blame_controller.rb')
-rw-r--r--app/controllers/projects/blame_controller.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/app/controllers/projects/blame_controller.rb b/app/controllers/projects/blame_controller.rb
deleted file mode 100644
index a87b8270a22..00000000000
--- a/app/controllers/projects/blame_controller.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# Controller for viewing a file's blame
-class Projects::BlameController < Projects::ApplicationController
- include ExtractsPath
-
- before_filter :require_non_empty_project
- before_filter :assign_ref_vars
- before_filter :authorize_download_code!
-
- def show
- @blame = Gitlab::Git::Blame.new(@repository, @commit.id, @path)
- @blob = @blame.blob
- end
-end