-
Notifications
You must be signed in to change notification settings - Fork 10
feat: removing lending routes as ported to cps combo page #6859
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -290,26 +290,10 @@ export default [ | |
| path: '/lend-by-category/blackrock', | ||
| redirect: '/lend-by-category', | ||
| }, | ||
| { | ||
| path: '/lend-by-category', | ||
| component: () => import('#src/pages/LoanFinding/LoanFinding'), | ||
| meta: { | ||
| unbounceEmailCapture: true, | ||
| }, | ||
| }, | ||
| { | ||
| path: '/lend-by-category/recommended-by-lenders', | ||
| redirect: '/lend-by-category' | ||
| }, | ||
| { | ||
| path: '/lend-by-category/:category', | ||
| component: () => import('#src/pages/Lend/LoanChannelCategoryPage'), | ||
| meta: { | ||
| excludeFromStaticSitemap: true, | ||
| unbounceEmailCapture: true, | ||
| unbouncePopUp: true, | ||
| }, | ||
| }, | ||
| { | ||
| path: '/lend-beta/:id', | ||
| redirect: '/lend/:id' | ||
|
|
@@ -346,14 +330,6 @@ export default [ | |
| unbouncePopUp: true, | ||
| } | ||
| }, | ||
| { | ||
| name: 'lend-filter', | ||
| path: '/lend/filter', | ||
| component: () => import('#src/pages/Lend/LoanSearchPage'), | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If it's possible to set this as a redirect and trigger a full page refresh, that would probably be good to set here. That way we'd be back out at the ingress and flux configs would handle pushing this to cps instead.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As we are currently having same route on cps, not sure what you mean. My guess is adding these routes to cps flux and removing from ui flux, like this: Open if you have other option in mind.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For this one, I was just thinking about how to handle internal to |
||
| meta: { | ||
| unbounceEmailCapture: true, | ||
| }, | ||
| }, | ||
| { | ||
| name: 'filter-alpha', | ||
| path: '/lend/filter-alpha', | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think both of these
/lend-by-catroutes should become redirects. This one is easy, not sure exactly how the category specific endpoint below will translate to the new page.