feat(chalice): added for_spot=True for authenticate_sso
This commit is contained in:
parent
c003057cf0
commit
a8971d842b
1 changed files with 2 additions and 2 deletions
|
|
@ -927,12 +927,12 @@ def authenticate_sso(email: str, internal_id: str):
|
||||||
aud=AUDIENCE, jwt_jti=j_r.jwt_refresh_jti),
|
aud=AUDIENCE, jwt_jti=j_r.jwt_refresh_jti),
|
||||||
"refreshTokenMaxAge": config("JWT_REFRESH_EXPIRATION", cast=int),
|
"refreshTokenMaxAge": config("JWT_REFRESH_EXPIRATION", cast=int),
|
||||||
"spotJwt": authorizers.generate_jwt(user_id=r['userId'], tenant_id=r['tenantId'],
|
"spotJwt": authorizers.generate_jwt(user_id=r['userId'], tenant_id=r['tenantId'],
|
||||||
iat=j_r.spot_jwt_iat, aud=spot.AUDIENCE),
|
iat=j_r.spot_jwt_iat, aud=spot.AUDIENCE, for_spot=True),
|
||||||
"spotRefreshToken": authorizers.generate_jwt_refresh(user_id=r['userId'],
|
"spotRefreshToken": authorizers.generate_jwt_refresh(user_id=r['userId'],
|
||||||
tenant_id=r['tenantId'],
|
tenant_id=r['tenantId'],
|
||||||
iat=j_r.spot_jwt_refresh_iat,
|
iat=j_r.spot_jwt_refresh_iat,
|
||||||
aud=spot.AUDIENCE,
|
aud=spot.AUDIENCE,
|
||||||
jwt_jti=j_r.spot_jwt_refresh_jti),
|
jwt_jti=j_r.spot_jwt_refresh_jti, for_spot=True),
|
||||||
"spotRefreshTokenMaxAge": config("JWT_SPOT_REFRESH_EXPIRATION", cast=int)
|
"spotRefreshTokenMaxAge": config("JWT_SPOT_REFRESH_EXPIRATION", cast=int)
|
||||||
}
|
}
|
||||||
return response
|
return response
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue