Add oidc.name and oidc.appId fields
This commit is contained in:
@@ -1946,9 +1946,10 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
|
||||
});
|
||||
};
|
||||
|
||||
Client.prototype.addOidcClient = function (id, secret, loginRedirectUri, logoutRedirectUri, callback) {
|
||||
Client.prototype.addOidcClient = function (id, name, secret, loginRedirectUri, logoutRedirectUri, callback) {
|
||||
var data = {
|
||||
id: id,
|
||||
name: name,
|
||||
secret: secret,
|
||||
loginRedirectUri: loginRedirectUri
|
||||
};
|
||||
@@ -1963,9 +1964,10 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
|
||||
});
|
||||
};
|
||||
|
||||
Client.prototype.updateOidcClient = function (id, secret, loginRedirectUri, logoutRedirectUri, callback) {
|
||||
Client.prototype.updateOidcClient = function (id, name, secret, loginRedirectUri, logoutRedirectUri, callback) {
|
||||
var data = {
|
||||
secret: secret,
|
||||
name: name,
|
||||
loginRedirectUri: loginRedirectUri
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user