Skip to content

Commit

Permalink
SAK-50701 Portal more sites is not rendering for admins (sakaiproject…
Browse files Browse the repository at this point in the history
  • Loading branch information
ern authored Nov 22, 2024
1 parent e10b867 commit 610b383
Showing 1 changed file with 17 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,30 +45,32 @@
public abstract class AbstractSiteViewImpl implements SiteView
{

protected PortalSiteHelperImpl siteHelper;
protected HttpServletRequest request;
protected String currentSiteId;
protected SiteService siteService;
@Setter protected String prefix;
@Setter protected String toolContextPath;
protected ServerConfigurationService serverConfigurationService;
protected Session session;
protected PreferencesService preferencesService;
protected List<Site> mySites;
protected ServerConfigurationService serverConfigurationService;
protected SiteNeighbourhoodService siteNeighbourhoodService;
protected SiteService siteService;

protected String currentSiteId;
@Setter protected boolean doPages = false;
@Setter protected boolean expandSite = false;
@Setter protected boolean includeSummary = false;
protected boolean loggedIn;
protected ArrayList<Site> moreSites;
protected List<Site> mySites;
protected String myWorkspaceSiteId;
protected boolean loggedIn;
@Setter protected String prefix;
protected Map<String, Object> renderContextMap;
@Setter protected boolean resetTools = false;
@Setter protected boolean doPages = false;
@Setter protected boolean includeSummary = false;
@Setter protected boolean expandSite = false;
protected SiteNeighbourhoodService siteNeighbourhoodService;
protected HttpServletRequest request;
@Setter protected boolean resetTools = false;
protected Session session;
protected PortalSiteHelperImpl siteHelper;
@Setter protected String toolContextPath;

public AbstractSiteViewImpl() {
preferencesService = ComponentManager.get(PreferencesService.class);
serverConfigurationService = ComponentManager.get(ServerConfigurationService.class);
siteNeighbourhoodService = ComponentManager.get(SiteNeighbourhoodService.class);
siteService = ComponentManager.get(SiteService.class);
}

public AbstractSiteViewImpl(PortalSiteHelperImpl siteHelper, HttpServletRequest request, Session session, String currentSiteId) {
Expand Down

0 comments on commit 610b383

Please sign in to comment.