Skip to content

Commit

Permalink
#619 - further simplification
Browse files Browse the repository at this point in the history
  • Loading branch information
grabdoc committed May 31, 2024
1 parent 7b8bb07 commit 4a27e33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api-rest/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ app:
name: @project.name@

databases:
- name: ${DB_ID:db}
- id: ${DB_ID:db}
url: ${DB_URL:}
username: ${DB_USER:}
password: ${DB_PASSWORD:}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import java.util.List;
import java.util.Map;

public record DatabaseConnectionDetail(String name, String type, String url, String username, String password, String database
public record DatabaseConnectionDetail(String id, String type, String url, String username, String password, String database
,List<String> catalog, List<String> schema, List<String> tables,
Map<String,String> connectionProperties, EnvironmentProperties envProperties) {
public boolean isMongo() {
Expand Down

0 comments on commit 4a27e33

Please sign in to comment.