-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add command to check redis connectivity * add accepted_terms of use to user bitmap * If no terms of use has been accepted, downgrade plan to USER_PLAN_GUEST * Create 0042_alter_userbitmap_subscriptions.py * apply django patch 5.0.8 https://docs.djangoproject.com/en/5.1/releases/5.0.8/
- Loading branch information
1 parent
db5dfd4
commit f2e490f
Showing
9 changed files
with
216 additions
and
142 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
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
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
18 changes: 18 additions & 0 deletions
18
impresso/migrations/0041_userbitmap_date_accepted_terms.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,18 @@ | ||
# Generated by Django 5.0.4 on 2024-10-12 12:55 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('impresso', '0040_alter_datasetbitmapposition_metadata_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='userbitmap', | ||
name='date_accepted_terms', | ||
field=models.DateTimeField(blank=True, null=True), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
impresso/migrations/0042_alter_userbitmap_subscriptions.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,18 @@ | ||
# Generated by Django 5.0.7 on 2024-10-14 06:56 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('impresso', '0041_userbitmap_date_accepted_terms'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='userbitmap', | ||
name='subscriptions', | ||
field=models.ManyToManyField(blank=True, to='impresso.datasetbitmapposition'), | ||
), | ||
] |
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