do not set scope to None

This commit is contained in:
Benoit Suttor 2021-09-15 11:51:19 +02:00
parent e4319193e4
commit 3d8f08efda
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ class Command(BaseCommand):
idtoken_algo = getattr(
OIDCClient, "ALGO_" + service["idtoken_algo"].upper()
)
scope = service.get("scope", None)
scope = service.get("scope", "")
oidc_client, created = OIDCClient.objects.get_or_create(
slug=service["slug"],