Skip to content

Commit

Permalink
feat: Cleanup Portal API from Deprecated items - MEED-7669 - Meeds-io…
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker authored and rdenarie committed Nov 4, 2024
1 parent 4f4b95b commit c1afe92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public String getPortletName() {
}

@Override
public List<PortletInstancePreference> generatePreferences(Application<Portlet> application, Portlet preferences) {
public List<PortletInstancePreference> generatePreferences(Application application, Portlet preferences) {
String settingName = getCmsSettingName(preferences);
if (StringUtils.isBlank(settingName)) {
return Collections.emptyList();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void testCreateWiki() throws WikiException {

public void testCreateWikiPermissions() throws Exception {
UserPortalConfigService portalConfigService = getContainer().getComponentInstanceOfType(UserPortalConfigService.class);
String defaultPortal = portalConfigService.getDefaultPortal();
String defaultPortal = portalConfigService.getMetaPortal();
Wiki siteWiki = getOrCreateWiki(wService, PortalConfig.PORTAL_TYPE, defaultPortal);
assertNotNull(siteWiki);
assertTrue(siteWiki.getPermissions()
Expand Down

0 comments on commit c1afe92

Please sign in to comment.