-
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.
[Fixes #12657] Align supported_file_extension_config with the new cli…
…ent configuration (#12673) * [Fixes #12657] Rename ACTIONS into TASKS * [Fixes #12657] Refactor supported types * [Fixes #12657] Refactor supported types * [Fixes #12657] Refactor supported type, fix data retriever and refactor handlers configuration * [Fixes #12657] Refactor supported type, fix data retriever and refactor handlers configuration * [Fixes #12657] Refactor supported type, fix data retriever and refactor handlers configuration * [Fixes #12657] Refactor supported type, fix data retriever and refactor handlers configuration * [Fixes #12657] Refactor supported type, fix data retriever and refactor handlers configuration * [Fixes #12657] Refactor supported type, fix data retriever and refactor handlers configuration
- Loading branch information
1 parent
8d58004
commit 883f933
Showing
55 changed files
with
443 additions
and
513 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
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
37 changes: 37 additions & 0 deletions
37
geonode/resource/migrations/0009_remove_executionrequest_source_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,37 @@ | ||
# Generated by Django 4.2.9 on 2024-10-18 10:41 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("resource", "0008_executionrequest_source"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="executionrequest", | ||
name="source", | ||
), | ||
migrations.AlterField( | ||
model_name="executionrequest", | ||
name="action", | ||
field=models.CharField( | ||
choices=[ | ||
("import", "import"), | ||
("upload", "upload"), | ||
("create", "create"), | ||
("copy", "copy"), | ||
("delete", "delete"), | ||
("permissions", "permissions"), | ||
("update", "update"), | ||
("ingest", "ingest"), | ||
("unknown", "unknown"), | ||
], | ||
default="unknown", | ||
max_length=50, | ||
null=True, | ||
), | ||
), | ||
] |
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
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
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
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
Oops, something went wrong.