Update django-oauth-toolkit requirement from ==2.2.* to ==2.3.* (#3882)

This commit is contained in:
Raphael Michel
2024-02-13 12:34:29 +01:00
committed by GitHub
parent 0fad7472c0
commit f87e089734
3 changed files with 24 additions and 1 deletions

View File

@@ -42,6 +42,11 @@ class OAuthApplication(AbstractApplication):
verbose_name=_("Redirection URIs"),
help_text=_("Allowed URIs list, space separated")
)
post_logout_redirect_uris = models.TextField(
blank=True, validators=[URIValidator],
help_text=_("Allowed Post Logout URIs list, space separated"),
default="",
)
client_id = models.CharField(
verbose_name=_("Client ID"),
max_length=100, unique=True, default=generate_client_id, db_index=True