set default for sslmode to verify-full in postgres datasource editor (#11615)

This commit is contained in:
Sven Klemm 2018-04-16 22:23:24 +02:00 committed by Daniel Lee
parent e7bcd8c3c3
commit 4599329683

View File

@ -8,7 +8,7 @@ class PostgresConfigCtrl {
/** @ngInject **/
constructor($scope) {
this.current.jsonData.sslmode = this.current.jsonData.sslmode || 'require';
this.current.jsonData.sslmode = this.current.jsonData.sslmode || 'verify-full';
}
}