-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update django-oauth-toolkit to major version 3 (#4941)
- Loading branch information
1 parent
2ce799d
commit 33fa4b3
Showing
5 changed files
with
39 additions
and
10 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
api/api/migrations/0070_throttledapplication_allowed_origins_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Generated by Django 4.2.11 on 2024-09-17 07:26 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api', '0069_alter_contentsource_source_identifier'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='throttledapplication', | ||
name='allowed_origins', | ||
field=models.TextField(blank=True, default='', help_text='Allowed origins list to enable CORS, space separated'), | ||
), | ||
migrations.AddField( | ||
model_name='throttledapplication', | ||
name='hash_client_secret', | ||
field=models.BooleanField(default=True), | ||
), | ||
migrations.AlterField( | ||
model_name='throttledapplication', | ||
name='post_logout_redirect_uris', | ||
field=models.TextField(blank=True, default='', help_text='Allowed Post Logout URIs list, space separated'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters