Skip to content

Commit

Permalink
feat: Reorder Overview Page Widgets - MEED-2860 - Meeds-io/MIPs#104 (#…
Browse files Browse the repository at this point in the history
…1278)

This change will reorder Overview widget by reversing rows order.
  • Loading branch information
boubaker authored Nov 13, 2023
1 parent e91f449 commit d374454
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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}" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit d374454

Please sign in to comment.