Skip to content

Commit

Permalink
fix: Add getter and setter for grant_type
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Rohozneanu committed Oct 2, 2024
1 parent c38ee33 commit 7180460
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/keycloak/openid_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,19 @@ def server_url(self):
def server_url(self, value):
self.base_url = value

@property
def grant_type(self):
"""Get grant type.
:returns: Grant type
:rtype: str
"""
return self._grant_type

@grant_type.setter
def grant_type(self, value):
self._grant_type = value

@property
def realm_name(self):
"""Get realm name.
Expand Down

0 comments on commit 7180460

Please sign in to comment.