mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- Fixes ALF-9841: Attempting to createNode() in a readonly transaction - Hide the channel-specific publishing actions from the UI git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29626 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
39 lines
1.7 KiB
XML
39 lines
1.7 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
|
|
<beans>
|
|
<bean parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
|
|
<property name="models">
|
|
<list>
|
|
<value>alfresco/model/slidesharePublishingModel.xml</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="slidesharePublishingHelper" class="org.alfresco.repo.publishing.slideshare.SlideSharePublishingHelper">
|
|
<property name="nodeService" ref="NodeService" />
|
|
<property name="slideshareConnector" ref="slideshareApiConnector" />
|
|
</bean>
|
|
|
|
<bean id="slideshareApiConnector" class="com.benfante.jslideshare.SlideShareConnectorImpl">
|
|
<property name="apiKey" value="iXUZdaNl" />
|
|
<property name="sharedSecret" value="DLysO5tR" />
|
|
</bean>
|
|
|
|
<bean id="publish_slideshare" parent="action-executer" class="org.alfresco.repo.publishing.slideshare.SlideSharePublishAction">
|
|
<property name="nodeService" ref="NodeService" />
|
|
<property name="taggingService" ref="TaggingService" />
|
|
<property name="contentService" ref="ContentService" />
|
|
<property name="slideShareHelper" ref="slidesharePublishingHelper" />
|
|
<property name="publicAction" value="false" />
|
|
</bean>
|
|
|
|
<bean id="slideshareDeliveryChannelType" class="org.alfresco.repo.publishing.slideshare.SlideShareChannelType" parent="baseChannelType" >
|
|
<property name="actionService" ref="ActionService" />
|
|
<property name="nodeService" ref="NodeService" />
|
|
<property name="publishingHelper" ref="slidesharePublishingHelper" />
|
|
</bean>
|
|
|
|
|
|
</beans>
|