ManageIQ/manageiq-ui-classic

View on GitHub
app/javascript/helpers/miq-redirect-back.js

Summary

Maintainability
A
0 mins
Test Coverage
/* global miqFlashLater */

const miqRedirectBack = (message, flashType, redirectUrl) => {
  miqFlashLater({ message, level: flashType });
  window.location.href = redirectUrl;
};

export default miqRedirectBack;