-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Move wallet spaces-templates-configuration to Digital workplace -
- Loading branch information
Showing
2 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
...webapps/src/main/webapp/WEB-INF/conf/digital-workplace/spaces-templates-configuration.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|