2012-09-17 13:36:13 -04:00
|
|
|
# Controller for viewing a file's blame
|
2012-09-27 14:59:42 -04:00
|
|
|
class BlameController < ProjectResourceController
|
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-04-03 03:06:31 -04:00
|
|
|
@blob = Gitlab::Git::Blob.new(@repository, @commit.id, @ref, @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
|