added tenant path to tenant notifiactions
This commit is contained in:
parent
f424e01b6a
commit
8d4fbaa804
|
@ -361,6 +361,10 @@ public class DepositServiceImpl implements DepositService {
|
||||||
fieldInfoList.add(new FieldInfo("{reasonName}", DataType.String, this.queryFactory.query(UserQuery.class).disableTracking().ids(this.userScope.getUserId()).first().getName()));
|
fieldInfoList.add(new FieldInfo("{reasonName}", DataType.String, this.queryFactory.query(UserQuery.class).disableTracking().ids(this.userScope.getUserId()).first().getName()));
|
||||||
fieldInfoList.add(new FieldInfo("{name}", DataType.String, dmp.getLabel()));
|
fieldInfoList.add(new FieldInfo("{name}", DataType.String, dmp.getLabel()));
|
||||||
fieldInfoList.add(new FieldInfo("{id}", DataType.String, dmp.getId().toString()));
|
fieldInfoList.add(new FieldInfo("{id}", DataType.String, dmp.getId().toString()));
|
||||||
|
|
||||||
|
if(this.tenantScope.getTenantCode() != null && !this.tenantScope.getTenantCode().equals(this.tenantScope.getDefaultTenantCode())){
|
||||||
|
fieldInfoList.add(new FieldInfo("{tenant-url-path}", DataType.String, String.format("/t/%s", this.tenantScope.getTenantCode())));
|
||||||
|
}
|
||||||
data.setFields(fieldInfoList);
|
data.setFields(fieldInfoList);
|
||||||
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
||||||
|
|
||||||
|
|
|
@ -405,6 +405,9 @@ public class DescriptionServiceImpl implements DescriptionService {
|
||||||
fieldInfoList.add(new FieldInfo("{reasonName}", DataType.String, this.queryFactory.query(UserQuery.class).disableTracking().ids(this.userScope.getUserId()).first().getName()));
|
fieldInfoList.add(new FieldInfo("{reasonName}", DataType.String, this.queryFactory.query(UserQuery.class).disableTracking().ids(this.userScope.getUserId()).first().getName()));
|
||||||
fieldInfoList.add(new FieldInfo("{name}", DataType.String, description.getLabel()));
|
fieldInfoList.add(new FieldInfo("{name}", DataType.String, description.getLabel()));
|
||||||
fieldInfoList.add(new FieldInfo("{id}", DataType.String, description.getId().toString()));
|
fieldInfoList.add(new FieldInfo("{id}", DataType.String, description.getId().toString()));
|
||||||
|
if(this.tenantScope.getTenantCode() != null && !this.tenantScope.getTenantCode().equals(this.tenantScope.getDefaultTenantCode())){
|
||||||
|
fieldInfoList.add(new FieldInfo("{tenant-url-path}", DataType.String, String.format("/t/%s", this.tenantScope.getTenantCode())));
|
||||||
|
}
|
||||||
data.setFields(fieldInfoList);
|
data.setFields(fieldInfoList);
|
||||||
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
||||||
|
|
||||||
|
|
|
@ -284,6 +284,9 @@ public class DescriptionTemplateServiceImpl implements DescriptionTemplateServic
|
||||||
fieldInfoList.add(new FieldInfo("{recipient}", DataType.String, user.getName()));
|
fieldInfoList.add(new FieldInfo("{recipient}", DataType.String, user.getName()));
|
||||||
fieldInfoList.add(new FieldInfo("{templateName}", DataType.String, descriptionTemplate.getLabel()));
|
fieldInfoList.add(new FieldInfo("{templateName}", DataType.String, descriptionTemplate.getLabel()));
|
||||||
fieldInfoList.add(new FieldInfo("{templateID}", DataType.String, descriptionTemplate.getId().toString()));
|
fieldInfoList.add(new FieldInfo("{templateID}", DataType.String, descriptionTemplate.getId().toString()));
|
||||||
|
if(this.tenantScope.getTenantCode() != null && !this.tenantScope.getTenantCode().equals(this.tenantScope.getDefaultTenantCode())){
|
||||||
|
fieldInfoList.add(new FieldInfo("{tenant-url-path}", DataType.String, String.format("/t/%s", this.tenantScope.getTenantCode())));
|
||||||
|
}
|
||||||
data.setFields(fieldInfoList);
|
data.setFields(fieldInfoList);
|
||||||
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
||||||
this.eventHandler.handle(event);
|
this.eventHandler.handle(event);
|
||||||
|
|
|
@ -330,6 +330,9 @@ public class DmpServiceImpl implements DmpService {
|
||||||
fieldInfoList.add(new FieldInfo("{reasonName}", DataType.String, this.queryFactory.query(UserQuery.class).disableTracking().ids(this.userScope.getUserId()).first().getName()));
|
fieldInfoList.add(new FieldInfo("{reasonName}", DataType.String, this.queryFactory.query(UserQuery.class).disableTracking().ids(this.userScope.getUserId()).first().getName()));
|
||||||
fieldInfoList.add(new FieldInfo("{name}", DataType.String, dmp.getLabel()));
|
fieldInfoList.add(new FieldInfo("{name}", DataType.String, dmp.getLabel()));
|
||||||
fieldInfoList.add(new FieldInfo("{id}", DataType.String, dmp.getId().toString()));
|
fieldInfoList.add(new FieldInfo("{id}", DataType.String, dmp.getId().toString()));
|
||||||
|
if(this.tenantScope.getTenantCode() != null && !this.tenantScope.getTenantCode().equals(this.tenantScope.getDefaultTenantCode())){
|
||||||
|
fieldInfoList.add(new FieldInfo("{tenant-url-path}", DataType.String, String.format("/t/%s", this.tenantScope.getTenantCode())));
|
||||||
|
}
|
||||||
data.setFields(fieldInfoList);
|
data.setFields(fieldInfoList);
|
||||||
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
||||||
|
|
||||||
|
@ -1497,6 +1500,9 @@ public class DmpServiceImpl implements DmpService {
|
||||||
fieldInfoList.add(new FieldInfo("{planname}", DataType.String, dmp.getLabel()));
|
fieldInfoList.add(new FieldInfo("{planname}", DataType.String, dmp.getLabel()));
|
||||||
fieldInfoList.add(new FieldInfo("{planrole}", DataType.String, role.toString()));
|
fieldInfoList.add(new FieldInfo("{planrole}", DataType.String, role.toString()));
|
||||||
fieldInfoList.add(new FieldInfo("{id}", DataType.String, dmp.getId().toString()));
|
fieldInfoList.add(new FieldInfo("{id}", DataType.String, dmp.getId().toString()));
|
||||||
|
if(this.tenantScope.getTenantCode() != null && !this.tenantScope.getTenantCode().equals(this.tenantScope.getDefaultTenantCode())){
|
||||||
|
fieldInfoList.add(new FieldInfo("{tenant-url-path}", DataType.String, String.format("/t/%s", this.tenantScope.getTenantCode())));
|
||||||
|
}
|
||||||
data.setFields(fieldInfoList);
|
data.setFields(fieldInfoList);
|
||||||
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
||||||
this.eventHandler.handle(event);
|
this.eventHandler.handle(event);
|
||||||
|
@ -1519,6 +1525,9 @@ public class DmpServiceImpl implements DmpService {
|
||||||
fieldInfoList.add(new FieldInfo("{confirmationToken}", DataType.String, token));
|
fieldInfoList.add(new FieldInfo("{confirmationToken}", DataType.String, token));
|
||||||
fieldInfoList.add(new FieldInfo("{planname}", DataType.String, dmp.getLabel()));
|
fieldInfoList.add(new FieldInfo("{planname}", DataType.String, dmp.getLabel()));
|
||||||
fieldInfoList.add(new FieldInfo("{planrole}", DataType.String, role.toString()));
|
fieldInfoList.add(new FieldInfo("{planrole}", DataType.String, role.toString()));
|
||||||
|
if(this.tenantScope.getTenantCode() != null && !this.tenantScope.getTenantCode().equals(this.tenantScope.getDefaultTenantCode())){
|
||||||
|
fieldInfoList.add(new FieldInfo("{tenant-url-path}", DataType.String, String.format("/t/%s", this.tenantScope.getTenantCode())));
|
||||||
|
}
|
||||||
data.setFields(fieldInfoList);
|
data.setFields(fieldInfoList);
|
||||||
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
||||||
this.eventHandler.handle(event);
|
this.eventHandler.handle(event);
|
||||||
|
|
|
@ -536,6 +536,9 @@ public class UserServiceImpl implements UserService {
|
||||||
fieldInfoList.add(new FieldInfo("{userName}", DataType.String, currentUser.getName()));
|
fieldInfoList.add(new FieldInfo("{userName}", DataType.String, currentUser.getName()));
|
||||||
fieldInfoList.add(new FieldInfo("{confirmationToken}", DataType.String, token));
|
fieldInfoList.add(new FieldInfo("{confirmationToken}", DataType.String, token));
|
||||||
fieldInfoList.add(new FieldInfo("{expiration_time}", DataType.String, this.secondsToTime(this.notificationProperties.getEmailExpirationTimeSeconds())));
|
fieldInfoList.add(new FieldInfo("{expiration_time}", DataType.String, this.secondsToTime(this.notificationProperties.getEmailExpirationTimeSeconds())));
|
||||||
|
if(this.tenantScope.getTenantCode() != null && !this.tenantScope.getTenantCode().equals(this.tenantScope.getDefaultTenantCode())){
|
||||||
|
fieldInfoList.add(new FieldInfo("{tenant-url-path}", DataType.String, String.format("/t/%s", this.tenantScope.getTenantCode())));
|
||||||
|
}
|
||||||
data.setFields(fieldInfoList);
|
data.setFields(fieldInfoList);
|
||||||
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
||||||
this.eventHandler.handle(event);
|
this.eventHandler.handle(event);
|
||||||
|
@ -560,6 +563,9 @@ public class UserServiceImpl implements UserService {
|
||||||
List<FieldInfo> fieldInfoList = new ArrayList<>();
|
List<FieldInfo> fieldInfoList = new ArrayList<>();
|
||||||
fieldInfoList.add(new FieldInfo("{confirmationToken}", DataType.String, token));
|
fieldInfoList.add(new FieldInfo("{confirmationToken}", DataType.String, token));
|
||||||
fieldInfoList.add(new FieldInfo("{expiration_time}", DataType.String, this.secondsToTime(this.notificationProperties.getEmailExpirationTimeSeconds())));
|
fieldInfoList.add(new FieldInfo("{expiration_time}", DataType.String, this.secondsToTime(this.notificationProperties.getEmailExpirationTimeSeconds())));
|
||||||
|
if(this.tenantScope.getTenantCode() != null && !this.tenantScope.getTenantCode().equals(this.tenantScope.getDefaultTenantCode())){
|
||||||
|
fieldInfoList.add(new FieldInfo("{tenant-url-path}", DataType.String, String.format("/t/%s", this.tenantScope.getTenantCode())));
|
||||||
|
}
|
||||||
data.setFields(fieldInfoList);
|
data.setFields(fieldInfoList);
|
||||||
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
event.setData(this.jsonHandlingService.toJsonSafe(data));
|
||||||
this.eventHandler.handle(event);
|
this.eventHandler.handle(event);
|
||||||
|
|
|
@ -57,10 +57,13 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{planname}]': null
|
'[{planname}]': null
|
||||||
'[{planrole}]': null
|
'[{planrole}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
cc: [ ]
|
cc: [ ]
|
||||||
cc-mode: 0
|
cc-mode: 0
|
||||||
bcc: [ ]
|
bcc: [ ]
|
||||||
|
@ -79,11 +82,14 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{planname}]': null
|
'[{planname}]': null
|
||||||
'[{planrole}]': null
|
'[{planrole}]': null
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
cc: [ ]
|
cc: [ ]
|
||||||
cc-mode: 0
|
cc-mode: 0
|
||||||
bcc: [ ]
|
bcc: [ ]
|
||||||
|
@ -102,10 +108,13 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{name}]': null
|
'[{name}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
cc: [ ]
|
cc: [ ]
|
||||||
cc-mode: 0
|
cc-mode: 0
|
||||||
bcc: [ ]
|
bcc: [ ]
|
||||||
|
@ -124,10 +133,13 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{name}]': null
|
'[{name}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
cc: [ ]
|
cc: [ ]
|
||||||
cc-mode: 0
|
cc-mode: 0
|
||||||
bcc: [ ]
|
bcc: [ ]
|
||||||
|
@ -146,10 +158,13 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{name}]': null
|
'[{name}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
cc: [ ]
|
cc: [ ]
|
||||||
cc-mode: 0
|
cc-mode: 0
|
||||||
bcc: [ ]
|
bcc: [ ]
|
||||||
|
@ -168,10 +183,13 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{name}]': null
|
'[{name}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
cc: [ ]
|
cc: [ ]
|
||||||
cc-mode: 0
|
cc-mode: 0
|
||||||
bcc: [ ]
|
bcc: [ ]
|
||||||
|
@ -190,10 +208,13 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{expiration_time}"
|
- key: "{expiration_time}"
|
||||||
value: ---
|
value: ---
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{userName}]': null
|
'[{userName}]': null
|
||||||
'[{installation-url}]': null
|
'[{installation-url}]': null
|
||||||
'[{expiration_time}]': null
|
'[{expiration_time}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
cc: [ ]
|
cc: [ ]
|
||||||
cc-mode: 0
|
cc-mode: 0
|
||||||
bcc: [ ]
|
bcc: [ ]
|
||||||
|
@ -214,8 +235,11 @@ notification:
|
||||||
value: email
|
value: email
|
||||||
- key: "{expiration_time}"
|
- key: "{expiration_time}"
|
||||||
value: --
|
value: --
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{email}]': null
|
'[{email}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
cc: [ ]
|
cc: [ ]
|
||||||
cc-mode: 0
|
cc-mode: 0
|
||||||
bcc: [ ]
|
bcc: [ ]
|
||||||
|
@ -234,10 +258,13 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{name}]': null
|
'[{name}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
cc: [ ]
|
cc: [ ]
|
||||||
cc-mode: 0
|
cc-mode: 0
|
||||||
bcc: [ ]
|
bcc: [ ]
|
||||||
|
@ -256,9 +283,12 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{templateName}]': null
|
'[{templateName}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
cc: [ ]
|
cc: [ ]
|
||||||
cc-mode: 0
|
cc-mode: 0
|
||||||
bcc: [ ]
|
bcc: [ ]
|
||||||
|
@ -321,11 +351,14 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{planname}]': null
|
'[{planname}]': null
|
||||||
'[{planrole}]': null
|
'[{planrole}]': null
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
priority-key: null
|
priority-key: null
|
||||||
cipher-fields: [ ]
|
cipher-fields: [ ]
|
||||||
- #planModified
|
- #planModified
|
||||||
|
@ -340,12 +373,15 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{name}]': null
|
'[{name}]': null
|
||||||
'[{installation-url}]': null
|
'[{installation-url}]': null
|
||||||
'[{id}]': null
|
'[{id}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
priority-key: null
|
priority-key: null
|
||||||
cipher-fields: [ ]
|
cipher-fields: [ ]
|
||||||
- #planFinalised
|
- #planFinalised
|
||||||
|
@ -360,12 +396,15 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{name}]': null
|
'[{name}]': null
|
||||||
'[{installation-url}]': null
|
'[{installation-url}]': null
|
||||||
'[{id}]': null
|
'[{id}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
priority-key: null
|
priority-key: null
|
||||||
cipher-fields: [ ]
|
cipher-fields: [ ]
|
||||||
- #desriptionModified
|
- #desriptionModified
|
||||||
|
@ -380,12 +419,15 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{name}]': null
|
'[{name}]': null
|
||||||
'[{installation-url}]': null
|
'[{installation-url}]': null
|
||||||
'[{id}]': null
|
'[{id}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
priority-key: null
|
priority-key: null
|
||||||
cipher-fields: [ ]
|
cipher-fields: [ ]
|
||||||
- #descriptionFinalised
|
- #descriptionFinalised
|
||||||
|
@ -400,12 +442,15 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{name}]': null
|
'[{name}]': null
|
||||||
'[{installation-url}]': null
|
'[{installation-url}]': null
|
||||||
'[{id}]': null
|
'[{id}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
priority-key: null
|
priority-key: null
|
||||||
cipher-fields: [ ]
|
cipher-fields: [ ]
|
||||||
- #mergeAccountConfirmation
|
- #mergeAccountConfirmation
|
||||||
|
@ -420,6 +465,8 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{expiration_time}"
|
- key: "{expiration_time}"
|
||||||
value: ---
|
value: ---
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{userName}]': null
|
'[{userName}]': null
|
||||||
'[{installation-url}]': null
|
'[{installation-url}]': null
|
||||||
|
@ -441,9 +488,12 @@ notification:
|
||||||
value: email
|
value: email
|
||||||
- key: "{expiration_time}"
|
- key: "{expiration_time}"
|
||||||
value: --
|
value: --
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{email}]': null
|
'[{email}]': null
|
||||||
'[{expiration_time}]': null
|
'[{expiration_time}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
priority-key: null
|
priority-key: null
|
||||||
cipher-fields: [ ]
|
cipher-fields: [ ]
|
||||||
- #planDeposit
|
- #planDeposit
|
||||||
|
@ -458,12 +508,15 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{reasonName}]': null
|
'[{reasonName}]': null
|
||||||
'[{name}]': null
|
'[{name}]': null
|
||||||
'[{installation-url}]': null
|
'[{installation-url}]': null
|
||||||
'[{id}]': null
|
'[{id}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
priority-key: null
|
priority-key: null
|
||||||
cipher-fields: [ ]
|
cipher-fields: [ ]
|
||||||
- #descriptionTemplateInvitation
|
- #descriptionTemplateInvitation
|
||||||
|
@ -478,11 +531,14 @@ notification:
|
||||||
optional:
|
optional:
|
||||||
- key: "{recipient}"
|
- key: "{recipient}"
|
||||||
value:
|
value:
|
||||||
|
- key: "{tenant-url-path}"
|
||||||
|
value:
|
||||||
formatting:
|
formatting:
|
||||||
'[{templateName}]': null
|
'[{templateName}]': null
|
||||||
'[{installation-url}]': null
|
'[{installation-url}]': null
|
||||||
'[{templateID}]': null
|
'[{templateID}]': null
|
||||||
'[{recipient}]': null
|
'[{recipient}]': null
|
||||||
|
'[{tenant-url-path}]': null
|
||||||
priority-key: null
|
priority-key: null
|
||||||
cipher-fields: [ ]
|
cipher-fields: [ ]
|
||||||
template-cache:
|
template-cache:
|
||||||
|
|
|
@ -270,7 +270,7 @@
|
||||||
<table border="0" cellpadding="0" cellspacing="0">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <a href="{installation-url}/descriptions/overview/{id}" target="_blank">Click here to view it.</a> </td>
|
<td> <a href="{installation-url}{tenant-url-path}/descriptions/overview/{id}" target="_blank">Click here to view it.</a> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
<body class="">
|
<body class="">
|
||||||
<p>Dear {recipient},</p>
|
<p>Dear {recipient},</p>
|
||||||
<p>{reasonName} just finalised the Description {name}.</p>
|
<p>{reasonName} just finalised the Description {name}.</p>
|
||||||
<a href="{installation-url}/descriptions/overview/{id}" target="_blank">Click here to view it.</a>
|
<a href="{installation-url}{tenant-url-path}/descriptions/overview/{id}" target="_blank">Click here to view it.</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -270,7 +270,7 @@
|
||||||
<table border="0" cellpadding="0" cellspacing="0">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <a href="{installation-url}/descriptions/overview/{id}" target="_blank">Click here to view it.</a> </td>
|
<td> <a href="{installation-url}{tenant-url-path}/descriptions/overview/{id}" target="_blank">Click here to view it.</a> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
<body class="">
|
<body class="">
|
||||||
<p>Dear {recipient},</p>
|
<p>Dear {recipient},</p>
|
||||||
<p>{reasonName} just made changes to the Description {name}.</p>
|
<p>{reasonName} just made changes to the Description {name}.</p>
|
||||||
<a href="{installation-url}/descriptions/overview/{id}" target="_blank">Click here to view it.</a>
|
<a href="{installation-url}{tenant-url-path}/descriptions/overview/{id}" target="_blank">Click here to view it.</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -271,7 +271,7 @@
|
||||||
<table border="0" cellpadding="0" cellspacing="0">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <a href="{installation-url}/description-templates/{templateID}" target="_blank">{templateName}</a> </td>
|
<td> <a href="{installation-url}{tenant-url-path}/description-templates/{templateID}" target="_blank">{templateName}</a> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -8,6 +8,6 @@
|
||||||
<p>Dear {recipient},</p>
|
<p>Dear {recipient},</p>
|
||||||
<p>You have been invited to co-develop the Template {templateName}.</p>
|
<p>You have been invited to co-develop the Template {templateName}.</p>
|
||||||
<p>Click the button to redirect to {templateName}.</p>
|
<p>Click the button to redirect to {templateName}.</p>
|
||||||
<a href="{installation-url}/description-templates/{templateID}" target="_blank">{templateName}</a>
|
<a href="{installation-url}{tenant-url-path}/description-templates/{templateID}" target="_blank">{templateName}</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -271,7 +271,7 @@
|
||||||
<table border="0" cellpadding="0" cellspacing="0">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <a href="{installation-url}/login/merge/confirmation/{confirmationToken}" target="_blank">Confirm Merge Request</a> </td>
|
<td> <a href="{installation-url}{tenant-url-path}/login/merge/confirmation/{confirmationToken}" target="_blank">Confirm Merge Request</a> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -9,6 +9,6 @@
|
||||||
<h2>User {userName} have sent you a merge Request.</h2>
|
<h2>User {userName} have sent you a merge Request.</h2>
|
||||||
<p>Please confirm that you want to merge your {installation-url} account with that account.
|
<p>Please confirm that you want to merge your {installation-url} account with that account.
|
||||||
<br/>The link will expire in {expiration_time}.</p>
|
<br/>The link will expire in {expiration_time}.</p>
|
||||||
<a href="{installation-url}/login/merge/confirmation/{confirmationToken}" target="_blank">Confirm Merge Request</a>
|
<a href="{installation-url}{tenant-url-path}/login/merge/confirmation/{confirmationToken}" target="_blank">Confirm Merge Request</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -270,7 +270,7 @@
|
||||||
<table border="0" cellpadding="0" cellspacing="0">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <a href="{installation-url}/plans/overview/{id}" target="_blank">Click here to view it.</a> </td>
|
<td> <a href="{installation-url}{tenant-url-path}/plans/overview/{id}" target="_blank">Click here to view it.</a> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
<body class="">
|
<body class="">
|
||||||
<p>Dear {recipient},</p>
|
<p>Dear {recipient},</p>
|
||||||
<p>{reasonName} just publish the {name}.</p>
|
<p>{reasonName} just publish the {name}.</p>
|
||||||
<a href="{installation-url}/plans/overview/{id}" target="_blank">Click here to view it.</a>
|
<a href="{installation-url}{tenant-url-path}/plans/overview/{id}" target="_blank">Click here to view it.</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -270,7 +270,7 @@
|
||||||
<table border="0" cellpadding="0" cellspacing="0">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <a href="{installation-url}/plans/overview/{id}" target="_blank">Click here to view it.</a> </td>
|
<td> <a href="{installation-url}{tenant-url-path}/plans/overview/{id}" target="_blank">Click here to view it.</a> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
<body class="">
|
<body class="">
|
||||||
<p>Dear {recipient},</p>
|
<p>Dear {recipient},</p>
|
||||||
<p>{reasonName} just finalised the Plan {name}.</p>
|
<p>{reasonName} just finalised the Plan {name}.</p>
|
||||||
<a href="{installation-url}/plans/overview/{id}" target="_blank">Click here to view it.</a>
|
<a href="{installation-url}{tenant-url-path}/plans/overview/{id}" target="_blank">Click here to view it.</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -271,7 +271,7 @@
|
||||||
<table border="0" cellpadding="0" cellspacing="0">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <a href="{installation-url}/plans/overview/{id}" target="_blank">Join</a> </td>
|
<td> <a href="{installation-url}{tenant-url-path}/plans/overview/{id}" target="_blank">Join</a> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -9,6 +9,6 @@
|
||||||
<p>Dear {recipient},</p>
|
<p>Dear {recipient},</p>
|
||||||
<p>{reasonName} just added you to collaborate to the Plan {planname} with role {planrole}.</p>
|
<p>{reasonName} just added you to collaborate to the Plan {planname} with role {planrole}.</p>
|
||||||
<p>Click the button to redirect to {planname}.</p>
|
<p>Click the button to redirect to {planname}.</p>
|
||||||
<a href="{installation-url}/plans/overview/{id}" target="_blank">Join</a>
|
<a href="{installation-url}{tenant-url-path}/plans/overview/{id}" target="_blank">Join</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -271,7 +271,7 @@
|
||||||
<table border="0" cellpadding="0" cellspacing="0">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <a href="{installation-url}/plans/invitation/{confirmationToken}" target="_blank">Join</a> </td>
|
<td> <a href="{installation-url}{tenant-url-path}/plans/invitation/{confirmationToken}" target="_blank">Join</a> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -270,7 +270,7 @@
|
||||||
<table border="0" cellpadding="0" cellspacing="0">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <a href="{installation-url}/plans/overview/{id}" target="_blank">Click here to view it.</a> </td>
|
<td> <a href="{installation-url}{tenant-url-path}/plans/overview/{id}" target="_blank">Click here to view it.</a> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<body class="">
|
<body class="">
|
||||||
<p>Dear {recipient},</p>
|
<p>Dear {recipient},</p>
|
||||||
<p>{reasonName} just made changes to the Plan {name}.</p>
|
<p>{reasonName} just made changes to the Plan {name}.</p>
|
||||||
<a href="{installation-url}/plans/overview/{id}" target="_blank">Click here to view it.</a>
|
<a href="{installation-url}{tenant-url-path}/plans/overview/{id}" target="_blank">Click here to view it.</a>
|
||||||
</table>
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -271,7 +271,7 @@
|
||||||
<table border="0" cellpadding="0" cellspacing="0">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <a href="{installation-url}/login/unlink/confirmation/{confirmationToken}" target="_blank">Confirm Unlink Request</a> </td>
|
<td> <a href="{installation-url}{tenant-url-path}/login/unlink/confirmation/{confirmationToken}" target="_blank">Confirm Unlink Request</a> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -9,6 +9,6 @@
|
||||||
<h2>You have made a request to unlink your email account in OpenCDMP.</h2>
|
<h2>You have made a request to unlink your email account in OpenCDMP.</h2>
|
||||||
<p>Please confirm that you want to unlink your {email} account.
|
<p>Please confirm that you want to unlink your {email} account.
|
||||||
<br/>The link will expire in {expiration_time}.</p>
|
<br/>The link will expire in {expiration_time}.</p>
|
||||||
<a href="{installation-url}/login/unlink/confirmation/{confirmationToken}" target="_blank">Confirm Unlink Request</a>
|
<a href="{installation-url}{tenant-url-path}/login/unlink/confirmation/{confirmationToken}" target="_blank">Confirm Unlink Request</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue