07d3d44775
And use .rubocop.yml to exclude paths we don't care, rather than using the cop itself to exclude.
25 lines
587 B
Ruby
25 lines
587 B
Ruby
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
|
|
|
|
private
|
|
|
|
def convert_line_endings(content)
|
|
params[:line_ending] == 'raw' ? content : content.gsub(/\r\n/, "\n")
|
|
end
|
|
end
|