-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding get_choices under the __init__ function of the serializer
- Loading branch information
Showing
2 changed files
with
32 additions
and
4 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
20 changes: 20 additions & 0 deletions
20
geonode/upload/migrations/0050_alter_uploadsizelimit_max_size.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,20 @@ | ||
# Generated by Django 4.2.16 on 2024-12-06 08:35 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("upload", "0049_move_data_from_importer_to_upload"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="uploadsizelimit", | ||
name="max_size", | ||
field=models.PositiveBigIntegerField( | ||
default=104857600, help_text="The maximum file size allowed for upload (bytes)." | ||
), | ||
), | ||
] |