refactor(users): Make profile_id in the JWT non-optional (#6537)

This commit is contained in:
Mani Chandra
2024-11-18 12:56:00 +05:30
committed by GitHub
parent df32e82500
commit d32397f060
8 changed files with 58 additions and 110 deletions

View File

@ -100,7 +100,7 @@ pub async fn generate_jwt_auth_token_with_attributes(
role_id,
&state.conf,
org_id,
Some(profile_id),
profile_id,
tenant_id,
)
.await?;