File size: 366 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { STEPS } from '../internals/steps';
export const shouldRedirectToSiteMigration = (
step: string,
platform: string,
origin?: string | null,
entryPoint?: string | null
) => {
return (
step === STEPS.IMPORT_LIST.slug &&
platform === 'wordpress' &&
( origin === STEPS.SITE_MIGRATION_IDENTIFY.slug || entryPoint === 'wp-admin-importers-list' )
);
};
|