Change OIDC engine to not be federated
We don't need linking, just the ability to perform lookup
This commit is contained in:
parent
bc82edb2d1
commit
ed897c7cb0
8 changed files with 78 additions and 25 deletions
|
@ -237,11 +237,10 @@ import * as URI from 'urijs';
|
|||
|
||||
$scope.serializeDbUri = function(fields) {
|
||||
if (!fields['server']) { return ''; }
|
||||
if (!fields['database']) { return ''; }
|
||||
|
||||
var uri = URI();
|
||||
try {
|
||||
if (!fields['server']) { return ''; }
|
||||
if (!fields['database']) { return ''; }
|
||||
uri = uri && uri.host(fields['server']);
|
||||
uri = uri && uri.protocol(fields['kind']);
|
||||
uri = uri && uri.username(fields['username']);
|
||||
|
|
Reference in a new issue