We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8876011 commit 90cc6e3Copy full SHA for 90cc6e3
src/main/scala/de/upb/cs/swt/delphi/webapi/authorization/AuthProvider.scala
@@ -25,8 +25,8 @@ object AuthProvider {
25
.issuedNow
26
.expiresIn(validFor * 60)
27
.startsNow
28
- .+("user_id", if (useGenericName) webapi.configuration.instanceName else s"${webapi.configuration.assignedID.get}")
29
- .+("user_type", "Component")
+ . + ("user_id", if (useGenericName) webapi.configuration.instanceName else s"${webapi.configuration.assignedID.get}")
+ . + ("user_type", "Component")
30
31
32
Jwt.encode(claim, webapi.configuration.jwtSecretKey, JwtAlgorithm.HS256)
0 commit comments