gitlabhq/app/controllers/blob_controller.rb

23 lines
465 B
Ruby
Raw Normal View History

2012-09-17 19:49:57 +02:00
# Controller for viewing a file's blame
class BlobController < ProjectResourceController
include ExtractsPath
2012-09-17 19:49:57 +02:00
# Authorize
before_filter :authorize_read_project!
before_filter :authorize_code_access!
before_filter :require_non_empty_project
def show
if @tree.is_blob?
send_data(
@tree.data,
type: @tree.mime_type,
2012-09-17 19:49:57 +02:00
disposition: 'inline',
filename: @tree.name
)
else
not_found!
end
end
end