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: Configure default icon for the the wallet node of new space with "community" space template - EXO-66660 - Meeds-io/MIPs#95 #441

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,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>