2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
# Controller for viewing a file's raw
|
|
|
|
class Projects::RawController < Projects::ApplicationController
|
|
|
|
include ExtractsPath
|
2018-11-20 20:47:30 +05:30
|
|
|
include SendsBlob
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :require_non_empty_project
|
|
|
|
before_action :assign_ref_vars
|
|
|
|
before_action :authorize_download_code!
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
def show
|
|
|
|
@blob = @repository.blob_at(@commit.id, @path)
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
send_blob(@repository, @blob, inline: (params[:inline] != 'false'))
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|