Support #17063, modify confirmation text when invitation email has been sent

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/widgets/invite-friends-widget@181145 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Massimiliano Assante 2019-07-05 08:28:46 +00:00
parent 45f17e1153
commit 99b360d05f
3 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,8 @@
<ReleaseNotes> <ReleaseNotes>
<Changeset component="org.gcube.portlets-widgets.invite-friends-widget.1-6-1"
date="2019-07-05">
<Change>Support #17063, modify confirmation text when invitation email has been sent</Change>
</Changeset>
<Changeset component="org.gcube.portlets-widgets.invite-friends-widget.1-5-0" <Changeset component="org.gcube.portlets-widgets.invite-friends-widget.1-5-0"
date="2017-11-29"> date="2017-11-29">
<Change>Ported to GWT 2.8.1</Change> <Change>Ported to GWT 2.8.1</Change>

View File

@ -14,7 +14,7 @@
<groupId>org.gcube.portlets.widgets</groupId> <groupId>org.gcube.portlets.widgets</groupId>
<artifactId>invite-friends-widget</artifactId> <artifactId>invite-friends-widget</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.6.0-SNAPSHOT</version> <version>1.6.1-SNAPSHOT</version>
<name>gCube Invites widget</name> <name>gCube Invites widget</name>
<description> <description>
gCube Invites widget Widget is a GWT Widget that can be used to automatically send invites to VRE users gCube Invites widget Widget is a GWT Widget that can be used to automatically send invites to VRE users

View File

@ -138,7 +138,7 @@ public class FormViewImpl extends Composite implements FormView, Editor<FormView
public void onSuccess(InviteOperationResult result) { public void onSuccess(InviteOperationResult result) {
switch (result) { switch (result) {
case SUCCESS: case SUCCESS:
feedback.setText("Thanks for inviting, we sent the email correctly."); feedback.setText("Thanks, the invitation email has been sent.");
feedbackGroup.setType(ControlGroupType.SUCCESS); feedbackGroup.setType(ControlGroupType.SUCCESS);
break; break;
case ALREADY_INVITED: case ALREADY_INVITED: