Skip to content
Snippets Groups Projects
Commit b27c87ae authored by kbeyro's avatar kbeyro
Browse files

add instanceId

parent f1895ce4
No related branches found
No related tags found
2 merge requests!273Release 1.8.0 update,!221add instanceId
Pipeline #94555 passed
...@@ -17,4 +17,5 @@ public class DashboardDeploymentsView { ...@@ -17,4 +17,5 @@ public class DashboardDeploymentsView {
private String user; private String user;
private String applicationName; private String applicationName;
private String applicationVersion; private String applicationVersion;
private Long instanceId;
} }
...@@ -55,6 +55,7 @@ public class DashboardServiceImpl implements DashboardService { ...@@ -55,6 +55,7 @@ public class DashboardServiceImpl implements DashboardService {
.map(entry -> DashboardDeploymentsView.builder().user(entry.getOwner().getUsername()) .map(entry -> DashboardDeploymentsView.builder().user(entry.getOwner().getUsername())
.domainName(entry.getDomain().getName()) .domainName(entry.getDomain().getName())
.applicationName(entry.getApplication().getName()) .applicationName(entry.getApplication().getName())
.instanceId(entry.getId())
.applicationVersion(entry.getApplication().getVersion()) .applicationVersion(entry.getApplication().getVersion())
.build()) .build())
.toList(); .toList();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment