-
Notifications
You must be signed in to change notification settings - Fork 0
blueprint import_extension #206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
e6ff518
feat(extensions): add new blueprint and tests for extension imports
MaxNumerique 7090cc1
frontend_file as read
MaxNumerique 56b7696
Apply prepare changes
MaxNumerique 35ead1d
EXTENSION_FOLDER_PATH in config
MaxNumerique 069cc6a
fix test with EXTENSION_FOLDER_PATH
MaxNumerique 5c99282
Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWe…
JulienChampagnol 3b7f777
Merge branch 'feat/extensions' of https://github.com/Geode-solutions/…
JulienChampagnol 1c9bb68
Feat(App): create_app, register_ogw_back_blueprints, run_server
JulienChampagnol 1043160
Apply prepare changes
JulienChampagnol 24d80c8
wip unit tests [skip ci]
JulienChampagnol 9b7b95b
Merge branch 'feat/extensions' of https://github.com/Geode-solutions/…
JulienChampagnol 1f433c8
Apply prepare changes
JulienChampagnol fd574bd
Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWe…
JulienChampagnol 4d7e303
Merge branch 'feat/extensions' of https://github.com/Geode-solutions/…
JulienChampagnol d068a01
test trigger tests
JulienChampagnol f91d8e6
Apply prepare changes
JulienChampagnol c9ba3e7
fix tests
JulienChampagnol 3c9d07a
Merge branch 'feat/extensions' of https://github.com/Geode-solutions/…
JulienChampagnol dd71a91
Apply prepare changes
JulienChampagnol 9b70f2d
feat(App): create_app, register_ogw_back_blueprints, run_server
JulienChampagnol 52979c4
Merge branch 'feat/extensions' of https://github.com/Geode-solutions/…
JulienChampagnol 4105e00
main run opengeodeweb_back
JulienChampagnol 82af674
Apply prepare changes
JulienChampagnol 0992929
wrapper function
JulienChampagnol 4703ee9
Merge branch 'feat/extensions' of https://github.com/Geode-solutions/…
JulienChampagnol f75fd67
Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWe…
JulienChampagnol ed2eca6
Apply prepare changes
JulienChampagnol File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -60,4 +60,3 @@ werkzeug==3.1.2 | |
| # flask | ||
| # flask-cors | ||
|
|
||
| opengeodeweb-microservice==1.*,>=1.0.10rc1 | ||
This file contains hidden or 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 hidden or 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
10 changes: 10 additions & 0 deletions
10
src/opengeodeweb_back/routes/schemas/import_extension.json
This file contains hidden or 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,10 @@ | ||
| { | ||
| "route": "/import_extension", | ||
| "methods": [ | ||
| "POST" | ||
| ], | ||
| "type": "object", | ||
| "properties": {}, | ||
| "required": [], | ||
| "additionalProperties": false | ||
| } |
This file contains hidden or 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,10 @@ | ||
| from dataclasses_json import DataClassJsonMixin | ||
| from dataclasses import dataclass | ||
|
|
||
|
|
||
| @dataclass | ||
| class ImportExtension(DataClassJsonMixin): | ||
| def __post_init__(self) -> None: | ||
| print(self, flush=True) | ||
|
|
||
| pass |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.