gitlab-org--gitlab-foss/app/controllers/blob_controller.rb

14 lines
345 B
Ruby
Raw Normal View History

2012-09-17 17:49:57 +00:00
# Controller for viewing a file's blame
class BlobController < ProjectResourceController
include ExtractsPath
2012-09-17 17:49:57 +00:00
# Authorize
before_filter :authorize_read_project!
before_filter :authorize_code_access!
before_filter :require_non_empty_project
def show
@blob = Gitlab::Git::Blob.new(@repository, @commit.id, @ref, @path)
2012-09-17 17:49:57 +00:00
end
end