Skip to content
Snippets Groups Projects
Commit fb6320c2 authored by Lukasz Lopatowski's avatar Lukasz Lopatowski
Browse files

Merge branch 'fix-dashboard-issue' into 'develop'

add instanceId

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