We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6740a48 commit 943b871Copy full SHA for 943b871
oauth2_provider/models.py
@@ -66,6 +66,8 @@ class AbstractApplication(models.Model):
66
default=generate_client_secret, db_index=True)
67
name = models.CharField(max_length=255, blank=True)
68
skip_authorization = models.BooleanField(default=False)
69
+ # only used if oauth2_settings.APP_SPECIFIC_SCOPES is True
70
+ allowed_scopes = models.TextField(help_text="List of allowed scopes for this application, space separated")
71
72
class Meta:
73
abstract = True
0 commit comments