Author: jacopoc
Date: Tue Dec 13 09:04:03 2011
New Revision: 1213613
URL: http://svn.apache.org/viewvc?rev=1213613&view=rev
Log:
Backported from rev. 1213609: Added missing controller entry required by WorkEffort-->Communications;
thanks to Torstein Hegbom for the bug report (OFBIZ-2870)
Modified:
ofbiz/branches/release09.04/applications/workeffort/webapp/workeffort/WEB-INF/controller.xml
Modified: ofbiz/branches/release09.04/applications/workeffort/webapp/workeffort/WEB-INF/controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release09.04/applications/workeffort/webapp/workeffort/WEB-INF/controller.xml?rev=1213613&r1=1213612&r2=1213613&view=diff
==============================================================================
--- ofbiz/branches/release09.04/applications/workeffort/webapp/workeffort/WEB-INF/controller.xml
(original)
+++ ofbiz/branches/release09.04/applications/workeffort/webapp/workeffort/WEB-INF/controller.xml
Tue Dec 13 09:04:03 2011
@@ -185,6 +185,12 @@ under the License.
<!-- WorkEffort CommunicationEvents requests -->
<request-map uri="ListWorkEffortCommEvents"><security https="true" auth="true"/><response
name="success" type="view" value="ListWorkEffortCommEvents"/></request-map>
+ <request-map uri="createCommunicationEvent">
+ <security https="true" auth="true"/>
+ <event type="service" invoke="createCommunicationEventWorkEff"/>
+ <response name="success" type="view" value="ListWorkEffortCommEvents"/>
+ <response name="error" type="view" value="ListWorkEffortCommEvents"/>
+ </request-map>
<request-map uri="createWorkEffortCommEvent">
<security https="true" auth="true"/>
<event type="service" invoke="createCommunicationEventWorkEff"/>
|