Skip to content

Commit

Permalink
Auth-Oauth: changed is to =
Browse files Browse the repository at this point in the history
  • Loading branch information
shivamg9 committed Feb 19, 2024
1 parent 0a1683b commit 181cea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openg2p_portal_api/models/orm/auth_oauth_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ async def get_auth_provider_from_iss(cls, iss: str) -> "AuthOauthProviderORM":
select(cls)
.where(
and_(
cls.g2p_self_service_allowed is True,
cls.g2p_self_service_allowed == True,
cls.token_endpoint.ilike(f"%{iss}%"),
)
)
Expand Down

0 comments on commit 181cea1

Please sign in to comment.