new configuration version
This commit is contained in:
parent
d4b5e0e991
commit
4a2f89047a
|
@ -45,7 +45,7 @@ spec:
|
|||
podDisruptionBudget:
|
||||
maxUnavailable: "50%"
|
||||
git:
|
||||
tag: "r-99b024ab40db43dd54605ef7a00c68a144b42b27"
|
||||
tag: "r-3aab3f0794f78c9a05e89e88a737ad0e3e648f7f"
|
||||
dir: "DEFAULT-ADN-AGOV-PROJECT/DEFAULT-ADN-AGOV-INV/auth"
|
||||
credentials: "git-credentials"
|
||||
keystores:
|
||||
|
|
|
@ -15,14 +15,17 @@ def credentialType = session['authenticatedWith'] ?: 'unknown'
|
|||
def sourceIp = request.getLoginContext()['connection.HttpHeader.X-Real-IP'] ?: 'unknown'
|
||||
def userAgent = request.getLoginContext()['connection.HttpHeader.user-agent'] ?: request.getLoginContext()['connection.HttpHeader.User-Agent'] ?: 'unknown'
|
||||
|
||||
LOG.info("----- 1")
|
||||
|
||||
|
||||
IdmRestClient idmRestClient = IdmRestClientFactory.get(parameters)
|
||||
|
||||
LOG.info("----- 2")
|
||||
String clientExtId = session.get('ch.adnovum.nevisidm.user.clientExtId')
|
||||
String userExtId = session.get('ch.adnovum.nevisidm.user.extId')
|
||||
String mobile = session.get('ch.nevis.idm.User.mobile')
|
||||
|
||||
LOG.info("----- 3")
|
||||
String baseUrl = parameters.get('baseUrl')
|
||||
String endPoint = "${baseUrl}/core/v1/${clientExtId}/users/${userExtId}"
|
||||
|
||||
|
@ -33,6 +36,9 @@ if (mobile) {
|
|||
}
|
||||
if (inargs['submit'] && inargs['mobile']) {
|
||||
String result
|
||||
|
||||
LOG.info("----- 4")
|
||||
|
||||
def patchBdy = "{\"contacts\":{\"mobile\": \"${inargs[mobile]?.trim()}\"},\"added mobile number from user during request ${requestId}\":\"\"}"
|
||||
try {
|
||||
LOG.info("-----")
|
||||
|
|
Loading…
Reference in New Issue