diff --git a/src/layouts/tpa-search/tpa-search.vue b/src/layouts/tpa-search/tpa-search.vue new file mode 100644 index 00000000..f3bb24f5 --- /dev/null +++ b/src/layouts/tpa-search/tpa-search.vue @@ -0,0 +1,71 @@ + + \ No newline at end of file diff --git a/src/router/router-constants/issPage-values.js b/src/router/router-constants/issPage-values.js index 6f8877bf..10b5d315 100644 --- a/src/router/router-constants/issPage-values.js +++ b/src/router/router-constants/issPage-values.js @@ -31,5 +31,6 @@ export const issPageValues = { VIN_LOOKUP: 'vin-lookup', TPA_SUBMIT: 'tpa-submit', BAILOUT_PAGE: 'bailout-page', + TPA_SEARCH: 'tpa-search' }; \ No newline at end of file diff --git a/src/router/router-constants/routing-table.js b/src/router/router-constants/routing-table.js index fe335080..27fc5620 100644 --- a/src/router/router-constants/routing-table.js +++ b/src/router/router-constants/routing-table.js @@ -557,6 +557,19 @@ const routingTable = function(store) { ], }, + { + issPageValue: issPageValues.TPA_SEARCH, + maps: [ + { + scenario: navigationScenarios.CLICKED_BACK, + destinationIssPageValue: issPageValues.PROVIDER_PREFERENCE + }, + { + scenario: navigationScenarios.CLICKED_FORWARD, + destinationIssPageValue: issPageValues.TPA_SUBMIT, + }, + ] + } ]; };