Skip to content

Commit 90cc6e3

Browse files
author
Johannes Duesing
committed
Codestyle: Inserted spaces before plus operator
1 parent 8876011 commit 90cc6e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/scala/de/upb/cs/swt/delphi/webapi/authorization/AuthProvider.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ object AuthProvider {
2525
.issuedNow
2626
.expiresIn(validFor * 60)
2727
.startsNow
28-
.+("user_id", if (useGenericName) webapi.configuration.instanceName else s"${webapi.configuration.assignedID.get}")
29-
.+("user_type", "Component")
28+
. + ("user_id", if (useGenericName) webapi.configuration.instanceName else s"${webapi.configuration.assignedID.get}")
29+
. + ("user_type", "Component")
3030

3131

3232
Jwt.encode(claim, webapi.configuration.jwtSecretKey, JwtAlgorithm.HS256)

0 commit comments

Comments
 (0)