Skip to content

Commit

Permalink
update deps and fix migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
pvyParts committed Sep 19, 2024
1 parent 90171a7 commit c0a434e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Generated by Django 4.2.16 on 2024-09-19 09:48

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('allianceauth_oidc', '0003_remove_allianceauthapplication_logo_and_more'),
]

operations = [
migrations.AddField(
model_name='allianceauthapplication',
name='allowed_origins',
field=models.TextField(blank=True, default='', help_text='Allowed origins list to enable CORS, space separated'),
),
migrations.AddField(
model_name='allianceauthapplication',
name='hash_client_secret',
field=models.BooleanField(default=True),
),
migrations.AlterField(
model_name='allianceauthapplication',
name='post_logout_redirect_uris',
field=models.TextField(blank=True, default='', help_text='Allowed Post Logout URIs list, space separated'),
),
]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
]
dependencies = [
"allianceauth>=3.3.0",
"django-oauth-toolkit>=2.3.0,<3.0.0",
"django-oauth-toolkit>=3.0.1,<4.0.0",
"Pillow"
]
dynamic = ["version", "description"]
Expand Down

0 comments on commit c0a434e

Please sign in to comment.