1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-10 04:35:24 +00:00

Deletion of an LDAP authentication mode may fail silently (#28000).

Patch by Go MAEDA.


git-svn-id: http://svn.redmine.org/redmine/trunk@17232 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2018-03-12 04:31:04 +00:00
parent 9c6d95b059
commit 8ee4d5084d
3 changed files with 4 additions and 0 deletions

View File

@ -68,6 +68,8 @@ class AuthSourcesController < ApplicationController
unless @auth_source.users.exists?
@auth_source.destroy
flash[:notice] = l(:notice_successful_delete)
else
flash[:error] = l(:error_can_not_delete_auth_source)
end
redirect_to auth_sources_path
end

View File

@ -221,6 +221,7 @@ en:
error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: "Spent time cannot be reassigned to an issue that is about to be deleted"
warning_fields_cleared_on_bulk_edit: "Changes will result in the automatic deletion of values from one or more fields on the selected objects"
error_exceeds_maximum_hours_per_day: "Cannot log more than %{max_hours} hours on the same day (%{logged_hours} hours have already been logged)"
error_can_not_delete_auth_source: "This authentication mode is in use and cannot be deleted."
mail_subject_lost_password: "Your %{value} password"
mail_body_lost_password: 'To change your password, click on the following link:'

View File

@ -159,6 +159,7 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
:id => 1
}
assert_redirected_to '/auth_sources'
assert_equal 'This authentication mode is in use and cannot be deleted.', flash[:error]
end
end