gitlab-org--gitlab-foss/app/controllers/concerns/snippets_actions.rb

32 lines
593 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module SnippetsActions
extend ActiveSupport::Concern
def edit
end
def raw
disposition = params[:inline] == 'false' ? 'attachment' : 'inline'
workhorse_set_content_type!
send_data(
convert_line_endings(blob.data),
type: 'text/plain; charset=utf-8',
disposition: disposition,
filename: Snippet.sanitized_file_name(blob.name)
)
end
2018-02-06 08:33:18 -05:00
def js_request?
request.format.js?
end
private
def convert_line_endings(content)
params[:line_ending] == 'raw' ? content : content.gsub(/\r\n/, "\n")
end
end