Skip to content

Commit 0656670

Browse files
committed
added skip_authorization flag to Application
1 parent 754238d commit 0656670

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

oauth2_provider/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ class AbstractApplication(models.Model):
7070
client_secret = models.CharField(max_length=255, blank=True,
7171
default=generate_client_secret, db_index=True)
7272
name = models.CharField(max_length=255, blank=True)
73+
skip_authorization = models.BooleanField(default=False)
7374

7475
class Meta:
7576
abstract = True

0 commit comments

Comments
 (0)