fixed bug on UserAcceptingInvite not reporting the invite date
git-svn-id: https://svn.research-infrastructures.eu/d4science/gcube/trunk/portlets/user/join-vre@148982 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
713385b86a
commit
278159a4df
|
@ -4,9 +4,6 @@
|
|||
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
|
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
|
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
|
||||
<dependent-module archiveName="email-templates-library-1.0.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/email-templates-library/email-templates-library">
|
||||
<dependency-type>uses</dependency-type>
|
||||
</dependent-module>
|
||||
<property name="java-output-path" value="/${module}/target/www/WEB-INF/classes"/>
|
||||
<property name="context-root" value="join-vre"/>
|
||||
</wb-module>
|
||||
|
|
|
@ -182,7 +182,7 @@ public class LoginServiceUtil {
|
|||
|
||||
EmailTemplateService.send(
|
||||
"Accepted Invitation to VRE " + selectedVRE,
|
||||
new TemplateUserAcceptedInvite(currUser, selectedVRE, invite.getSenderFullName(), invite.getSenderUserId(), gatewayName, gatewayURL),
|
||||
new TemplateUserAcceptedInvite(currUser, selectedVRE, invite.getSenderFullName(), invite.getSenderUserId(), invite.getTime(), gatewayName, gatewayURL),
|
||||
request,
|
||||
recipients.toArray(new Recipient[recipients.size()]));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue