Skip to content

Commit

Permalink
implementation ( Content Analytics Search): #30231 Implement Search f…
Browse files Browse the repository at this point in the history
…orm and results. (#30434)

### Proposed Changes
* correct route path.
  • Loading branch information
hmoreras authored Oct 23, 2024
1 parent d520768 commit 8973f4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ com.dotcms.repackage.javax.portlet.title.pages=Pages
com.dotcms.repackage.javax.portlet.title.landing-pages=Landing Pages
com.dotcms.repackage.javax.portlet.title.dotai=dotAI
com.dotcms.repackage.javax.portlet.title.locales=Locales
com.dotcms.repackage.javax.portlet.title.analytics_search=Analytics Search
com.dotcms.repackage.javax.portlet.title.analytics-search=Analytics Search
com.dotcms.repackage.javax.app.title.edit-ema=Edit Mode Anywhere
com.dotmarketing.business.UserAPI.delete.beginning=Deletion of user {0}: Started replacing user references in {1}.
com.dotmarketing.business.UserAPI.delete.end=Deletion of user {0}: Finished replacing user references in {1}.
Expand Down
2 changes: 1 addition & 1 deletion dotCMS/src/main/webapp/WEB-INF/portlet.xml
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@
</portlet>

<portlet>
<portlet-name>analytics_search</portlet-name>
<portlet-name>analytics-search</portlet-name>
<display-name>Analytics Search</display-name>
<portlet-class>com.dotcms.spring.portlet.PortletController</portlet-class>
</portlet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ public void testFromXmlFile() throws IOException {
portletList.getPortlets().stream().anyMatch(p -> p.getPortletId().equals("categories")));
assertTrue("PortletList should contain 'dotai' portlet",
portletList.getPortlets().stream().anyMatch(p -> p.getPortletId().equals("dotai")));
assertTrue("PortletList should contain 'analytics_search' portlet",
portletList.getPortlets().stream().anyMatch(p -> p.getPortletId().equals("analytics_search")));
assertTrue("PortletList should contain 'analytics-search' portlet",
portletList.getPortlets().stream().anyMatch(p -> p.getPortletId().equals("analytics-search")));

// Check a specific portlet's details
Optional<DotPortlet> categoriesPortlet = portletList.getPortlets().stream()
Expand Down

0 comments on commit 8973f4f

Please sign in to comment.