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

24 lines
478 B
Ruby

module SnippetsActions
extend ActiveSupport::Concern
def edit
end
def raw
disposition = params[:inline] == 'false' ? 'attachment' : 'inline'
send_data(
convert_line_endings(@snippet.content),
type: 'text/plain; charset=utf-8',
disposition: disposition,
filename: @snippet.sanitized_file_name
)
end
private
def convert_line_endings(content)
params[:line_ending] == 'raw' ? content : content.gsub(/\r\n/, "\n")
end
end