fix 404 error, redirect back with flash message

This commit is contained in:
James Lopez 2016-07-07 15:34:45 +02:00
parent 3c89a788c7
commit dad8fc242c
1 changed files with 1 additions and 4 deletions

View File

@ -27,10 +27,7 @@ class Import::GitlabProjectsController < Import::BaseController
notice: "Project '#{@project.name}' is being imported."
)
else
redirect_to(
new_import_gitlab_project_path,
alert: "Project could not be imported: #{@project.errors.full_messages.join(', ')}"
)
redirect_back_or_default(options: { alert: "Project could not be imported: #{@project.errors.full_messages.join(', ')}" })
end
end