73322a0e55
Enables frozen string for the following: * app/controllers/*.rb * app/controllers/admin/**/*.rb * app/controllers/boards/**/*.rb * app/controllers/ci/**/*.rb * app/controllers/concerns/**/*.rb Partially addresses #47424.
31 lines
666 B
Ruby
31 lines
666 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SnippetsActions
|
|
extend ActiveSupport::Concern
|
|
|
|
def edit
|
|
end
|
|
|
|
# rubocop:disable Gitlab/ModuleWithInstanceVariables
|
|
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
|
|
# rubocop:enable Gitlab/ModuleWithInstanceVariables
|
|
|
|
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
|