2012-09-17 13:36:13 -04:00
|
|
|
# Controller for viewing a file's blame
|
2013-06-23 12:47:22 -04:00
|
|
|
class Projects::BlameController < Projects::ApplicationController
|
2012-09-20 13:55:14 -04:00
|
|
|
include ExtractsPath
|
2012-09-17 13:36:13 -04:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :authorize_read_project!
|
|
|
|
before_filter :authorize_code_access!
|
|
|
|
before_filter :require_non_empty_project
|
|
|
|
|
|
|
|
def show
|
2013-10-01 13:34:41 -04:00
|
|
|
@blob = @repository.blob_at(@commit.id, @path)
|
2013-04-01 09:04:35 -04:00
|
|
|
@blame = Gitlab::Git::Blame.new(project.repository, @commit.id, @path)
|
2012-09-17 13:36:13 -04:00
|
|
|
end
|
|
|
|
end
|