Merge branch 'clarify-deletion-message' into 'master'

Clarify which project is deleted to avoid alarm

Some users were alarmed when navigating after deleting  a project. Add the project name to avoid cause for alarm.

Closes #13654 

See merge request !5574
This commit is contained in:
Robert Speicher 2016-07-30 18:07:25 +00:00
commit e299504b79
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class ProjectsController < Projects::ApplicationController
end
if @project.pending_delete?
flash[:alert] = "Project queued for delete."
flash[:alert] = "Project #{@project.name} queued for deletion."
end
respond_to do |format|