a1fe375e44
It uses params[:id] instead of request.fullpath. It should fix #3132.
23 lines
465 B
Ruby
23 lines
465 B
Ruby
# Controller for viewing a file's blame
|
|
class BlobController < ProjectResourceController
|
|
include ExtractsPath
|
|
|
|
# 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,
|
|
disposition: 'inline',
|
|
filename: @tree.name
|
|
)
|
|
else
|
|
not_found!
|
|
end
|
|
end
|
|
end
|