mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 11:25:55 +01:00
Adds flash messages to files_controller#create (#19793).
git-svn-id: http://svn.redmine.org/redmine/trunk@14243 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -47,9 +47,16 @@ class FilesController < ApplicationController
|
|||||||
attachments = Attachment.attach_files(container, params[:attachments])
|
attachments = Attachment.attach_files(container, params[:attachments])
|
||||||
render_attachment_warning_if_needed(container)
|
render_attachment_warning_if_needed(container)
|
||||||
|
|
||||||
if !attachments.empty? && !attachments[:files].blank? && Setting.notified_events.include?('file_added')
|
if attachments[:files].present?
|
||||||
Mailer.attachments_added(attachments[:files]).deliver
|
if Setting.notified_events.include?('file_added')
|
||||||
|
Mailer.attachments_added(attachments[:files]).deliver
|
||||||
|
end
|
||||||
|
flash[:notice] = l(:label_file_added)
|
||||||
|
redirect_to project_files_path(@project)
|
||||||
|
else
|
||||||
|
flash.now[:error] = l(:label_attachment) + " " + l('activerecord.errors.messages.invalid')
|
||||||
|
new
|
||||||
|
render :action => 'new'
|
||||||
end
|
end
|
||||||
redirect_to project_files_path(@project)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -106,4 +106,15 @@ class FilesControllerTest < ActionController::TestCase
|
|||||||
assert_equal Version.find(2), a.container
|
assert_equal Version.find(2), a.container
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_create_without_file
|
||||||
|
set_tmp_attachments_directory
|
||||||
|
@request.session[:user_id] = 2
|
||||||
|
|
||||||
|
assert_no_difference 'Attachment.count' do
|
||||||
|
post :create, :project_id => 1, :version_id => ''
|
||||||
|
assert_response 200
|
||||||
|
assert_template 'new'
|
||||||
|
end
|
||||||
|
assert_select 'div.error', 'File is invalid'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user