Skip to content

Commit 342cf3d

Browse files
Rename to Aquality Tracking
1 parent 9d5a24b commit 342cf3d

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Reporting portal API
1+
# Aquality Tracking API
22

33
## Getting started
44

src/main/java/main/model/email/AuditEmails.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ public List<EmailDto> GetOverdueEmails() throws SQLException, IOException, JSONE
4747

4848
for(AuditStatisticDto overdueAudit: overdueAudits){
4949
EmailDto email = new EmailDto();
50-
email.setSubject("[REPORTING PORTAL] Overdue Project Audit - " + overdueAudit.getName());
50+
email.setSubject("[Aquality Tracking] Overdue Project Audit - " + overdueAudit.getName());
5151
email.setContent("<p style=\"font-family: Calibri, sans-serif; font-size: 11pt; line-height: 4px;\">Next Audit Date for the <strong><a style=\"color: #6b6b6b;\" href=\""
5252
+ hostUri() +"#/project/" + overdueAudit.getId()+"\">" + overdueAudit.getName() +"</a>&nbsp; </strong>project is overdue and requires your attention.</p>\n" +
5353
"<p style=\"font-family: Calibri, sans-serif; font-size: 11pt; line-height: 4px;\">Please follow this <a style=\"color: #6b6b6b;\" href=\""
5454
+ hostUri() + "#/audit\">link</a> to access Audits Dashboard.</p>\n" +
5555
"<p>&nbsp;</p>" +
5656
"<p style=\"font-family: Calibri, sans-serif; font-size: 10pt; line-height: 2px;\">Best Regards,</p>\n" +
57-
"<p style=\"font-family: Calibri, sans-serif; font-size: 10pt; line-height: 2px;\">Reporting Portal Administration</p>\n" +
57+
"<p style=\"font-family: Calibri, sans-serif; font-size: 10pt; line-height: 2px;\">Aquality Tracking Administration</p>\n" +
5858
"<p><img src=\"cid:logo\"></p>\n" +
59-
"<p><span style=\"font-family: Calibri; font-size: 7.5pt; color: #7f7f7f;\">This message is automatically generated by Notification Assistant for Reporting Portal.<br /> If you think it was sent incorrectly, please contact your Reporting Portal administrators.</span></p>");
59+
"<p><span style=\"font-family: Calibri; font-size: 7.5pt; color: #7f7f7f;\">This message is automatically generated by Notification Assistant for Aquality Tracking.<br /> If you think it was sent incorrectly, please contact your Reporting Portal administrators.</span></p>");
6060
List<String> customRecipients = new ArrayList<>(recipients);
6161

6262
if(!Objects.equals(overdueAudit.getLast_created_id(), overdueAudit.getLast_submitted_id())){
@@ -80,17 +80,17 @@ private List<EmailDto> getUpcomingAudits(int daysFromToday, List<AuditStatisticD
8080

8181
for(AuditStatisticDto upcAudit: upcomingAudits){
8282
EmailDto email = new EmailDto();
83-
email.setSubject("[REPORTING PORTAL] Upcoming Project Audit - " + upcAudit.getName());
83+
email.setSubject("[Aquality Tracking] Upcoming Project Audit - " + upcAudit.getName());
8484
email.setContent("<p style=\"font-family: Calibri, sans-serif; font-size: 11pt; line-height: 4px;\">Next Audit for the <strong><a style=\"color: #6b6b6b;\" href=\""
8585
+ hostUri() +"#/project/" + upcAudit.getId()+"\">" + upcAudit.getName() + "</a> </strong>project should be submitted within<strong> "
8686
+ days + " days.</strong></p>\n" +
8787
"<p style=\"font-family: Calibri, sans-serif; font-size: 11pt; line-height: 4px;\">Please follow this <a style=\"color: #6b6b6b;\" href=\""
8888
+ hostUri() + "#/audit\">link</a> to access Audits Dashboard and create a new Audit.</p>\n" +
8989
"<p>&nbsp;</p>\n" +
9090
"<p style=\"font-family: Calibri, sans-serif; font-size: 10pt; line-height: 2px;\">Best Regards,</p>\n" +
91-
"<p style=\"font-family: Calibri, sans-serif; font-size: 10pt; line-height: 2px;\">Reporting Portal Administration</p>\n" +
91+
"<p style=\"font-family: Calibri, sans-serif; font-size: 10pt; line-height: 2px;\">Aquality Tracking Administration</p>\n" +
9292
"<p><img src=\"cid:logo\"></p>\n" +
93-
"<p><span style=\"font-family: Calibri; font-size: 7.5pt; color: #7f7f7f;\">This message is automatically generated by Notification Assistant for Reporting Portal.<br /> If you think it was sent incorrectly, please contact your Reporting Portal administrators.</span></p>");
93+
"<p><span style=\"font-family: Calibri; font-size: 7.5pt; color: #7f7f7f;\">This message is automatically generated by Notification Assistant for Aquality Tracking.<br /> If you think it was sent incorrectly, please contact your Reporting Portal administrators.</span></p>");
9494
email.setRecipients(recipients);
9595
emails.add(email);
9696
}

src/main/java/main/model/email/TestRunEmails.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void sendTestRunResultsToTeam(TestRunDto testRun, List<UserDto> users) th
5858
" font-weight: bold;\n" +
5959
" font-family: Calibri, sans-serif;\n" +
6060
" font-size: 15px;\n" +
61-
" line-height: 10px;\" href=\"" + hostUri() + "#/project/" + projectDto.getId() + "/testrun/" + testRun.getId() + "\">View on Reporting Portal</a>\n" +
61+
" line-height: 10px;\" href=\"" + hostUri() + "#/project/" + projectDto.getId() + "/testrun/" + testRun.getId() + "\">View on Aquality Tracking</a>\n" +
6262
" </div>\n" +
6363
" <hr>\n" +
6464
" <div style=\"margin: 0;font-family: Calibri, sans-serif;height:50px; padding-top:20px; color:" + rateColor + ";font-size: 30px;\">\n" +
@@ -88,13 +88,13 @@ public void sendTestRunResultsToTeam(TestRunDto testRun, List<UserDto> users) th
8888
" <hr>\n" +
8989
" <br/>\n" +
9090
" <p style=\"font-family: Calibri, sans-serif; font-size: 10pt; line-height: 2px;\">Best Regards,</p>\n" +
91-
" <p style=\"font-family: Calibri, sans-serif; font-size: 10pt; line-height: 2px;\">Reporting Portal Administration</p>\n" +
91+
" <p style=\"font-family: Calibri, sans-serif; font-size: 10pt; line-height: 2px;\">Aquality Tracking Administration</p>\n" +
9292
" <p>\n" +
9393
" <img src=\"cid:logo\">\n" +
9494
" </p>\n" +
9595
" <p>\n" +
96-
" <span style=\"font-family: Calibri; font-size: 7.5pt; color: #7f7f7f;\">This message is automatically generated by Notification Assistant for Reporting Portal.\n" +
97-
" <br/> If you think it was sent incorrectly, please contact your Reporting Portal administrators.</span>\n" +
96+
" <span style=\"font-family: Calibri; font-size: 7.5pt; color: #7f7f7f;\">This message is automatically generated by Notification Assistant for Aquality Tracking.\n" +
97+
" <br/> If you think it was sent incorrectly, please contact your Aquality Tracking administrators.</span>\n" +
9898
" </p>\n" +
9999
"</div>");
100100
email.setRecipients(getProjectMemberRecipients(users));

0 commit comments

Comments
 (0)