Skip to content

Commit 7117078

Browse files
authored
Merge pull request #1778 from afumagalli98/1777
Added container name to oracle services export
2 parents 9ad46c4 + 4b89dbd commit 7117078

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

api-service/service/oracle_database_service.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ func (as *APIService) CreateGetOracleServiceListXLSX(filter dto.GlobalFilter) (*
4141
"Hostname",
4242
"DB Name",
4343
"Service Name",
44+
"Container Name",
4445
"Enabled",
4546
}
4647

@@ -62,6 +63,8 @@ func (as *APIService) CreateGetOracleServiceListXLSX(filter dto.GlobalFilter) (*
6263
sheets.SetCellValue(sheet, nextAxis(), "")
6364
}
6465

66+
sheets.SetCellValue(sheet, nextAxis(), val.OracleDatabaseService.ContainerName)
67+
6568
if val.OracleDatabaseService.Enabled != nil {
6669
sheets.SetCellValue(sheet, nextAxis(), *val.OracleDatabaseService.Enabled)
6770
} else {

0 commit comments

Comments
 (0)