-
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.
Merge pull request #31 from IFRCGo/feature/alert-filtered
Add global filter
- Loading branch information
Showing
18 changed files
with
490 additions
and
120 deletions.
There are no files selected for viewing
Submodule backend
updated
22 files
+4 −1 | .github/dependabot.yaml | |
+28 −0 | .github/pull_request_template.md | |
+1 −1 | Dockerfile | |
+0 −228 | apps/cap_feed/data_injector.py | |
+47 −0 | apps/cap_feed/data_injector/feed.py | |
+373 −0 | apps/cap_feed/data_injector/geo.py | |
+2 −0 | apps/cap_feed/formats/cap_xml.py | |
+0 −0 | apps/cap_feed/management/__init__.py | |
+0 −0 | apps/cap_feed/management/commands/__init__.py | |
+10 −0 | apps/cap_feed/management/commands/init_geo_data.py | |
+10 −0 | apps/cap_feed/management/commands/sync_geo_data_with_ifrc_go.py | |
+44 −0 | apps/cap_feed/migrations/0002_admin1_bbox_admin1_ifrc_go_id_country_bbox_and_more.py | |
+16 −2 | apps/cap_feed/models.py | |
+4 −3 | apps/cap_feed/tasks.py | |
+27 −20 | apps/cap_feed/types.py | |
+5 −0 | docker-compose.yml | |
+82 −0 | main/managers.py | |
+2 −1 | main/settings.py | |
+47 −45 | poetry.lock | |
+2 −2 | pyproject.toml | |
+9 −11 | schema.graphql | |
+21 −0 | utils/strawberry/types.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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
.map-container { | ||
flex-grow: 1; | ||
height: 40rem; | ||
height: 45rem; | ||
} | ||
} | ||
|
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.