This is an automated email from the ASF dual-hosted git repository.
nmalin pushed a commit to branch trunk
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/trunk by this push:
new b6944de Fixed: correct path to ftpAddress services (OFBIZ-11359)
b6944de is described below
commit b6944ded4cb06f5c49bb07ba7e02bfc88835bb62
Author: Nicolas Malin <
[hidden email]>
AuthorDate: Fri Mar 27 11:41:03 2020 +0100
Fixed: correct path to ftpAddress services
(OFBIZ-11359)
After the minilang ContactMarchServices.xml to groovy, I forgot to change
the path of existant ftpAddress services already present before.
Thanks to Olivier Heintz for this alert
---
applications/party/servicedef/services_contact.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/applications/party/servicedef/services_contact.xml b/applications/party/servicedef/services_contact.xml
index 1fa4461..90fd990 100644
--- a/applications/party/servicedef/services_contact.xml
+++ b/applications/party/servicedef/services_contact.xml
@@ -91,14 +91,14 @@ under the License.
<attribute name="emailAddress" type="String" mode="IN" optional="false"/>
</service>
<service name="createFtpAddress" default-entity-name="FtpAddress" engine="groovy" invoke="createFtpAddress"
- location="component://party/groovyScripts/party/ContactMechServices.groovy">
+ location="component://party/groovyScripts/contact/ContactMechServices.groovy">
<description>create FtpAddress</description>
<permission-service service-name="partyBasePermissionCheck" main-action="CREATE"/>
<auto-attributes mode="OUT" include="pk"/>
<auto-attributes mode="IN" include="nonpk" optional="true"/>
</service>
<service name="updateFtpAddressWithHistory" default-entity-name="FtpAddress" engine="groovy" invoke="updateFtpAddressWithHistory"
- location="component://party/groovyScripts/party/ContactMechServices.groovy">
+ location="component://party/groovyScripts/contact/ContactMechServices.groovy">
<description>update FtpAddress</description>
<permission-service service-name="partyBasePermissionCheck" main-action="UPDATE"/>
<auto-attributes mode="IN" include="pk"/>