ManageIQ/manageiq-ui-classic

View on GitHub
app/helpers/application_helper/import_export_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module ApplicationHelper::ImportExportHelper
  def status_description(exists)
    exists ? _("This object already exists in the database with the same name") : _("New object")
  end
end