We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d73b279 commit cbf90c7Copy full SHA for cbf90c7
all-actors/src/main/java/org/sunbird/cert/actor/CertBackgroundActor.java
@@ -91,6 +91,11 @@ private void addToRegistryAndUpdateCassandraRecord(Request request) {
91
92
} else {
93
certificateMap.put(JsonKeys.LAST_ISSUED_ON, formatter.format(new Date()));
94
+ Object eventIssueName = request.getRequest().get(JsonKeys.EVENT_ISSUE_NAME);
95
+ if (eventIssueName instanceof String && StringUtils.isNotBlank((String) eventIssueName)) {
96
+ logger.info("The Special Event Certificate is present and value is::: " + eventIssueName);
97
+ certificateMap.put(JsonKeys.EVENT_ISSUE_NAME, request.getRequest().get(JsonKeys.EVENT_ISSUE_NAME));
98
+ }
99
}
100
101
certificateMap.put(JsonKeys.TOKEN, accessCode);
0 commit comments