Skip to content

Commit

Permalink
feat: Configure default icon for the the wallet node of new space wit…
Browse files Browse the repository at this point in the history
…h "community" space template - EXO-66660 - Meeds-io/MIPs#95 (#441)
  • Loading branch information
IlhemEssaadi authored and exo-swf committed Nov 23, 2023
1 parent e92c30a commit 3eb517f
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<import profiles="app-center">war:/conf/wallet/app-center-configuration.xml</import>
<import>war:/conf/wallet/navigation-categories-configuration.xml</import>
<import profiles="gamification">war:/conf/wallet/gamification-configuration.xml</import>

<import>war:/conf/wallet/spaces-templates-configuration.xml</import>
</configuration>
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of the Meeds project (https://meeds.io/).
Copyright (C) 2023 Meeds Association
[email protected]
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-->
<configuration
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd http://www.exoplatform.org/xml/ns/kernel_1_2.xsd"
xmlns="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd">
<external-component-plugins>
<target-component>org.exoplatform.social.core.space.spi.SpaceTemplateService</target-component>
<!-- Community space template -->
<component-plugin>
<name>Space Template Extension</name>
<set-method>extendSpaceTemplatePlugin</set-method>
<type>org.exoplatform.social.core.space.SpaceTemplateConfigPlugin</type>
<init-params>
<object-param>
<name>template</name>
<description>Space Template</description>
<object type="org.exoplatform.social.core.space.SpaceTemplate">
<field name="name">
<string>community</string>
</field>
<field name="applications">
<collection type="java.util.ArrayList">
<value>
<object type="org.exoplatform.social.core.space.SpaceApplication">
<field name="portletApp">
<string>wallet</string>
</field>
<field name="portletName">
<string>SpaceWallet</string>
</field>
<field name="appTitle">
<string>SpaceWallet</string>
</field>
<field name="removable">
<boolean>true</boolean>
</field>
<field name="order">
<int>500</int>
</field>
<field name="uri">
<string>SpaceWallet</string>
</field>
<field name="icon">
<string>fas fa-wallet</string>
</field>
</object>
</value>
</collection>
</field>
</object>
</object-param>
</init-params>
</component-plugin>
<!-- end Community space template -->
</external-component-plugins>
</configuration>

0 comments on commit 3eb517f

Please sign in to comment.