Skip to content
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

feat: Unify Recognition apps setup in one single navigation - MEED-2896 - Meeds-io/meeds#1271 #1297

Closed
wants to merge 8 commits into from
Prev Previous commit
Next Next commit
feat: Reorder Overview Page Widgets - MEED-2860 - Meeds-io/MIPs#104 (#…
…1278)

This change will reorder Overview widget by reversing rows order.
boubaker committed Nov 19, 2023
commit 39603ef3f25c4cd2d65f665225d8e664887c1b6d
Original file line number Diff line number Diff line change
@@ -26,8 +26,9 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<properties-param>
<name>MeedsPortalConfigProperties</name>
<property name="exo.social.groups.portalConfig.metadata.importmode" value="${exo.social.groups.portalConfig.metadata.importmode:OVERWRITE}" />
<property name="exo.social.portalConfig.profilePage.importmode" value="${exo.social.portalConfig.profilePage.importmode:MERGE}" />
<property name="exo.social.portalConfig.metadata.importmode" value="${exo.social.portalConfig.metadata.importmode:OVERWRITE}" />
<property name="io.meeds.portalConfig.metadata.importmode" value="${io.meeds.portalConfig.metadata.importmode:OVERWRITE}" />
<property name="io.meeds.groups.portalConfig.metadata.importmode" value="${io.meeds.groups.portalConfig.metadata.importmode:OVERWRITE}" />
<property name="io.meeds.useWebuiResources" value="false" />
<property name="exo.feature.PostToNetwork.enabled" value="${exo.feature.PostToNetwork.enabled:true}" />
<property name="exo.feature.SNVFullPageAccess.enabled" value="${exo.feature.SNVFullPageAccess.enabled:false}" />
Original file line number Diff line number Diff line change
@@ -89,7 +89,7 @@
<boolean>${io.meeds.groups.portalConfig.metadata.override:true}</boolean>
</field>
<field name="importMode">
<string>${io.meeds.groups.portalConfig.metadata.importmode:overwrite}</string>
<string>${io.meeds.groups.portalConfig.metadata.importmode:merge}</string>
</field>
</object>
</object-param>
Original file line number Diff line number Diff line change
@@ -645,85 +645,85 @@
</portlet-application>
</container>
<container
id="contributionsContainer"
id="TopChallengersContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>myContributions</portlet-ref>
<portlet-ref>topChallengers</portlet-ref>
</portlet>
<title>My Contributions</title>
<title>Top Challengers</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
<container
id="ReputationContainer"
id="ChanllengesOverviewContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>myReputation</portlet-ref>
<portlet-ref>challengesOverview</portlet-ref>
</portlet>
<title>My Reputation</title>
<title>Challenges Overview</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
<container
id="RewardsContainer"
id="ProgramsOverviewContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>myRewards</portlet-ref>
<portlet-ref>programsOverview</portlet-ref>
</portlet>
<title>My Rewards</title>
<title>Programs Overview</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
<container
id="TopChallengersContainer"
id="contributionsContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>topChallengers</portlet-ref>
<portlet-ref>myContributions</portlet-ref>
</portlet>
<title>Top Challengers</title>
<title>My Contributions</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
<container
id="ChanllengesOverviewContainer"
id="ReputationContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>challengesOverview</portlet-ref>
<portlet-ref>myReputation</portlet-ref>
</portlet>
<title>Challenges Overview</title>
<title>My Reputation</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
<container
id="ProgramsOverviewContainer"
id="RewardsContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>programsOverview</portlet-ref>
<portlet-ref>myRewards</portlet-ref>
</portlet>
<title>Programs Overview</title>
<title>My Rewards</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>