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 754238d commit 0656670Copy full SHA for 0656670
oauth2_provider/models.py
@@ -70,6 +70,7 @@ class AbstractApplication(models.Model):
70
client_secret = models.CharField(max_length=255, blank=True,
71
default=generate_client_secret, db_index=True)
72
name = models.CharField(max_length=255, blank=True)
73
+ skip_authorization = models.BooleanField(default=False)
74
75
class Meta:
76
abstract = True
0 commit comments