Skip to content
Snippets Groups Projects
Commit 53150054 authored by Cam Saul's avatar Cam Saul
Browse files

pick a default value for SSL for new postgres DB :sob:

parent dffa1a48
Branches
Tags
No related merge requests found
......@@ -245,11 +245,13 @@ DatabasesControllers.controller('DatabaseEdit', ['$scope', '$routeParams', '$loc
} else {
// prepare an empty database for creation
$scope.database = {
"name": "",
"engine": 'postgres',
"details": {}
name: '',
engine: 'postgres',
details: {}
};
$scope.details = {
ssl: false
};
$scope.details = {};
}
}
]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment