├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── .travis.yml ├── Build ├── MSBuild │ ├── default.props │ └── specs.props ├── appveyor.yml ├── build.cake ├── build.ps1 ├── build.sh ├── clean.sh ├── docker_cloud │ ├── new_build_num │ └── pre_push ├── kill_all_dot_net.sh ├── tools │ └── packages.config └── travis_cake_image │ └── Dockerfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Codeathons └── 20170929 Oslo │ └── TechnicalIntro.pptx ├── Deploy ├── Compose │ ├── config │ │ ├── admin-event-horizons.json │ │ ├── admin-resources.json │ │ ├── alerts-event-horizons.json │ │ ├── alerts-resources.json │ │ ├── analytics-event-horizons.json │ │ ├── analytics-resources.json │ │ ├── apikeyToTenant.json │ │ ├── nginx-default.conf │ │ ├── notificationgateway-event-horizons.json │ │ ├── notificationgateway-resources.json │ │ ├── reporting-event-horizons.json │ │ ├── reporting-resources.json │ │ ├── tenant-map.json │ │ └── tenants.json │ └── docker-compose.yml ├── K8S │ ├── BoundedContexts │ │ ├── ingress.yaml │ │ ├── pods-admin.yaml │ │ ├── pods-notification.yaml │ │ ├── pods-reporting.yaml │ │ ├── pods-usermanagement.yaml │ │ ├── services.yaml │ │ └── tenants.yaml │ ├── Infrastructure │ │ ├── database.yaml │ │ ├── ingress.yaml │ │ └── swagger.yaml │ └── namespaces.yaml └── Local │ └── ReverseProxy │ ├── main.js │ └── package.json ├── Documentation ├── .gitignore ├── Architecture │ ├── Diagrams.pptx │ ├── apis.md │ ├── at_a_glance.md │ ├── bounded_contexts.md │ ├── commands.md │ ├── containers.md │ ├── ddd.md │ ├── dry.md │ ├── event_store.md │ ├── events.md │ ├── frontend.md │ ├── fundamentals.md │ ├── glossary.md │ ├── high_cohesion.md │ ├── identity_and_access.md │ ├── images │ │ ├── at_a_glance.png │ │ ├── cqrs.png │ │ ├── offline_syncing.png │ │ └── top_level.png │ ├── index.md │ ├── inversion_of_control.md │ ├── logging.md │ ├── offline_sync.md │ ├── persistence.md │ ├── principles.md │ └── sms_gateway.md ├── Continuous Integration │ └── overview.md ├── Contribution │ ├── copyright_header.md │ ├── documentation.md │ ├── editor.md │ ├── images │ │ ├── issues_add_note.png │ │ ├── issues_backlog_new.png │ │ ├── issues_convert_note_to_issue.png │ │ ├── issues_converted_issue.png │ │ ├── issues_issue_details.png │ │ └── issues_note_to_issue_details.png │ ├── issues.md │ ├── product_owners.md │ ├── runtime_exceptions.md │ └── toc.yml ├── Deployment │ ├── build.md │ ├── container_registry.md │ ├── helm.md │ ├── release_management.md │ └── versioning.md ├── Projects │ ├── Admin │ │ ├── Commands │ │ │ ├── ChangeAreasAndDataVerifiers.md │ │ │ ├── ChangeProjectDataOwner.md │ │ │ ├── CreateHealthRisk.md │ │ │ ├── CreateProject.md │ │ │ ├── DefineHealthRisksForProject.md │ │ │ └── SetSmsReportingStructure.md │ │ ├── Events │ │ │ ├── HealthRiskCreated.md │ │ │ ├── HealthRiskUpdated.md │ │ │ ├── ProjectAreasChanged.md │ │ │ ├── ProjectCreated.md │ │ │ ├── ProjectDataOwnerChanged.md │ │ │ ├── ProjectHealthRisksChanged.md │ │ │ └── ProjectSmsReportingStructureChanged.md │ │ ├── Processes │ │ │ ├── DefiningHealthRisks.md │ │ │ └── DefiningProject.md │ │ ├── ReadModels │ │ │ ├── HealthRisk.md │ │ │ └── Project.md │ │ ├── assets │ │ │ ├── physical-view.png │ │ │ ├── reporting-feedback.png │ │ │ ├── scenarios.png │ │ │ └── system-context.png │ │ └── index.md │ ├── Alerts │ │ └── index.md │ ├── Analytics │ │ ├── Web Mockup │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── 404.html │ │ │ ├── ageandsexdistributionoverdifferenttimeframes.html │ │ │ ├── barchartsbydistrict.html │ │ │ ├── browserconfig.xml │ │ │ ├── css │ │ │ │ ├── Ageandsexdistributionoverdifferenttimeframes.css │ │ │ │ ├── Barchartsbydistrict.css │ │ │ │ ├── DistrictPersonreportingfunnelplotA.css │ │ │ │ ├── DistrictPersonreportingfunnelplotB.css │ │ │ │ ├── Epicurvebyday.css │ │ │ │ ├── Epicurvebydaydodgedbyage.css │ │ │ │ ├── Epicurvebyweek.css │ │ │ │ ├── Epicurvebyweekdodgedbyage.css │ │ │ │ ├── Mapbygeographicalarea.css │ │ │ │ ├── Weeklyepicurvesbyagesex.css │ │ │ │ ├── Weeklyepicurvesbygeographicalarea.css │ │ │ │ ├── font-face.css │ │ │ │ ├── main.css │ │ │ │ ├── normalize.css │ │ │ │ └── theme.css │ │ │ ├── districtpersonreportingfunnelplota.html │ │ │ ├── districtpersonreportingfunnelplotb.html │ │ │ ├── epicurvebyday.html │ │ │ ├── epicurvebydaydodgedbyage.html │ │ │ ├── epicurvebyweek.html │ │ │ ├── epicurvebyweekdodgedbyage.html │ │ │ ├── favicon.ico │ │ │ ├── humans.txt │ │ │ ├── icon.png │ │ │ ├── images │ │ │ │ └── icon │ │ │ │ │ ├── rodekors.jpg │ │ │ │ │ └── rodekors.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── Ageandsexdistributionoverdifferenttimeframes.js │ │ │ │ ├── Barchartsbydistrict.js │ │ │ │ ├── DistrictPersonreportingfunnelplotA.js │ │ │ │ ├── DistrictPersonreportingfunnelplotB.js │ │ │ │ ├── Epicurvebyday.js │ │ │ │ ├── Epicurvebydaydodgedbyage.js │ │ │ │ ├── Epicurvebyweek.js │ │ │ │ ├── Epicurvebyweekdodgedbyage.js │ │ │ │ ├── Mapbygeographicalarea.js │ │ │ │ ├── Weeklyepicurvesbyagesex.js │ │ │ │ ├── Weeklyepicurvesbygeographicalarea.js │ │ │ │ ├── commonData.js │ │ │ │ ├── custom.js │ │ │ │ ├── fakedata │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── data │ │ │ │ │ │ ├── casereports-2018-September-28 (1).xlsx │ │ │ │ │ │ ├── datacollectors-2018-September-28 (1).xlsx │ │ │ │ │ │ ├── gadm36_NOR_1_sp.rds │ │ │ │ │ │ ├── gadm36_NOR_2_sf.rds │ │ │ │ │ │ ├── gadm36_NOR_2_sp.rds │ │ │ │ │ │ └── old_gadm36_NOR_1_sp.rds │ │ │ │ │ ├── json │ │ │ │ │ │ ├── epicurve-by-day.json │ │ │ │ │ │ └── epicurve-by-week.json │ │ │ │ │ ├── project.Rproj │ │ │ │ │ ├── report.Rmd │ │ │ │ │ ├── report.md │ │ │ │ │ └── report_files │ │ │ │ │ │ └── figure-markdown_strict │ │ │ │ │ │ ├── unnamed-chunk-1-1.png │ │ │ │ │ │ ├── unnamed-chunk-10-1.png │ │ │ │ │ │ ├── unnamed-chunk-11-1.png │ │ │ │ │ │ ├── unnamed-chunk-2-1.png │ │ │ │ │ │ ├── unnamed-chunk-3-1.png │ │ │ │ │ │ ├── unnamed-chunk-4-1.png │ │ │ │ │ │ ├── unnamed-chunk-5-1.png │ │ │ │ │ │ ├── unnamed-chunk-6-1.png │ │ │ │ │ │ ├── unnamed-chunk-7-1.png │ │ │ │ │ │ ├── unnamed-chunk-8-1.png │ │ │ │ │ │ └── unnamed-chunk-9-1.png │ │ │ │ ├── fakejson │ │ │ │ │ ├── epicurve-by-day.json │ │ │ │ │ └── epicurve-by-week.json │ │ │ │ ├── fakejsonGlobal │ │ │ │ │ ├── epicurve-by-day.json │ │ │ │ │ └── epicurve-by-week.json │ │ │ │ ├── graph1 │ │ │ │ │ ├── Epicurvebyday.js │ │ │ │ │ └── Epicurvebyweek.js │ │ │ │ ├── graph2 │ │ │ │ │ └── Epicurvebyday.js │ │ │ │ ├── graph3 │ │ │ │ │ └── Epicurvebyday.js │ │ │ │ ├── graph4 │ │ │ │ │ └── Epicurvebyday.js │ │ │ │ ├── graph5 │ │ │ │ │ └── Epicurvebyday.js │ │ │ │ ├── main.js │ │ │ │ └── plugins.js │ │ │ ├── mapbygeographicalarea.html │ │ │ ├── mapdata.csv │ │ │ ├── mapdata.json │ │ │ ├── page1.html │ │ │ ├── page1 │ │ │ │ ├── Epicurvebyweek_1.js │ │ │ │ ├── Epicurvebyweek_2.js │ │ │ │ ├── Epicurvebyweek_3.js │ │ │ │ ├── Epicurvebyweek_4.js │ │ │ │ ├── age.js │ │ │ │ └── reports.js │ │ │ ├── page2.html │ │ │ ├── page4.html │ │ │ ├── robots.txt │ │ │ ├── site.webmanifest │ │ │ ├── test.html │ │ │ ├── tile-wide.png │ │ │ ├── tile.png │ │ │ ├── vendor │ │ │ │ ├── animsition │ │ │ │ │ ├── animsition.min.css │ │ │ │ │ └── animsition.min.js │ │ │ │ ├── bootstrap-4.1 │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── popper.min.js │ │ │ │ ├── bootstrap-progressbar │ │ │ │ │ ├── bootstrap-progressbar-3.3.4.min.css │ │ │ │ │ └── bootstrap-progressbar.min.js │ │ │ │ ├── chartjs │ │ │ │ │ └── Chart.bundle.min.js │ │ │ │ ├── circle-progress │ │ │ │ │ ├── circle-progress.js │ │ │ │ │ └── circle-progress.min.js │ │ │ │ ├── countdown │ │ │ │ │ ├── countdowntime.js │ │ │ │ │ ├── jquery.countdown.min.js │ │ │ │ │ ├── moment-timezone-with-data.min.js │ │ │ │ │ ├── moment-timezone.min.js │ │ │ │ │ └── moment.min.js │ │ │ │ ├── counter-up │ │ │ │ │ ├── jquery.counterup.min.js │ │ │ │ │ ├── jquery.waypoints.min.js │ │ │ │ │ └── waypoints.min.js │ │ │ │ ├── css-hamburgers │ │ │ │ │ ├── hamburgers.css │ │ │ │ │ └── hamburgers.min.css │ │ │ │ ├── font-awesome-4.7 │ │ │ │ │ ├── HELP-US-OUT.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── font-awesome-5 │ │ │ │ │ ├── css │ │ │ │ │ │ └── fontawesome-all.min.css │ │ │ │ │ └── webfonts │ │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ │ ├── jquery-3.2.1.min.js │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── lightbox2 │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── lightbox.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ │ ├── next.png │ │ │ │ │ │ │ └── prev.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── lightbox-plus-jquery.js │ │ │ │ │ │ │ ├── lightbox-plus-jquery.min.js │ │ │ │ │ │ │ ├── lightbox-plus-jquery.min.map │ │ │ │ │ │ │ ├── lightbox.js │ │ │ │ │ │ │ ├── lightbox.min.js │ │ │ │ │ │ │ └── lightbox.min.map │ │ │ │ │ └── src │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── lightbox.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── next.png │ │ │ │ │ │ └── prev.png │ │ │ │ │ │ └── js │ │ │ │ │ │ └── lightbox.js │ │ │ │ ├── mdi-font │ │ │ │ │ ├── css │ │ │ │ │ │ ├── material-design-iconic-font.css │ │ │ │ │ │ └── material-design-iconic-font.min.css │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ │ │ │ └── Material-Design-Iconic-Font.woff2 │ │ │ │ ├── perfect-scrollbar │ │ │ │ │ ├── perfect-scrollbar.css │ │ │ │ │ ├── perfect-scrollbar.js │ │ │ │ │ └── perfect-scrollbar.min.js │ │ │ │ ├── progressbar │ │ │ │ │ ├── progressbar.js │ │ │ │ │ └── progressbar.min.js │ │ │ │ ├── select2 │ │ │ │ │ ├── select2.min.css │ │ │ │ │ └── select2.min.js │ │ │ │ ├── slick │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ ├── config.rb │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── slick.eot │ │ │ │ │ │ ├── slick.svg │ │ │ │ │ │ ├── slick.ttf │ │ │ │ │ │ └── slick.woff │ │ │ │ │ ├── slick-theme.css │ │ │ │ │ ├── slick-theme.less │ │ │ │ │ ├── slick-theme.scss │ │ │ │ │ ├── slick.css │ │ │ │ │ ├── slick.js │ │ │ │ │ ├── slick.less │ │ │ │ │ ├── slick.min.js │ │ │ │ │ └── slick.scss │ │ │ │ ├── smk-accordion │ │ │ │ │ ├── accordion.css │ │ │ │ │ ├── accordion.js │ │ │ │ │ └── accordion.min.js │ │ │ │ ├── sweetalert │ │ │ │ │ └── sweetalert.min.js │ │ │ │ ├── vector-map │ │ │ │ │ ├── jquery.vmap.brazil.js │ │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ │ ├── jquery.vmap.france.js │ │ │ │ │ ├── jquery.vmap.germany.js │ │ │ │ │ ├── jquery.vmap.js │ │ │ │ │ ├── jquery.vmap.min.js │ │ │ │ │ ├── jquery.vmap.russia.js │ │ │ │ │ ├── jquery.vmap.sampledata.js │ │ │ │ │ ├── jquery.vmap.usa.js │ │ │ │ │ ├── jquery.vmap.world.js │ │ │ │ │ └── jqvmap.min.css │ │ │ │ └── wow │ │ │ │ │ ├── animate.css │ │ │ │ │ └── wow.min.js │ │ │ ├── weeklyepicurvesbyagesex.html │ │ │ └── weeklyepicurvesbygeographicalarea.html │ │ ├── archive.md │ │ ├── archive │ │ │ ├── fakedata │ │ │ │ ├── .gitignore │ │ │ │ ├── data │ │ │ │ │ ├── NOR_adm1.rds │ │ │ │ │ ├── casereports-2018-September-28 (1).xlsx │ │ │ │ │ ├── datacollectors-2018-September-28 (1).xlsx │ │ │ │ │ ├── gadm36_NOR_1_sp.rds │ │ │ │ │ ├── gadm36_NOR_2_sf.rds │ │ │ │ │ ├── gadm36_NOR_2_sp.rds │ │ │ │ │ └── old_gadm36_NOR_1_sp.rds │ │ │ │ ├── json │ │ │ │ │ ├── epicurve-by-day.json │ │ │ │ │ └── epicurve-by-week.json │ │ │ │ ├── report.md │ │ │ │ └── report_files │ │ │ │ │ └── figure-markdown_strict │ │ │ │ │ ├── unnamed-chunk-1-1.png │ │ │ │ │ ├── unnamed-chunk-10-1.png │ │ │ │ │ ├── unnamed-chunk-11-1.png │ │ │ │ │ ├── unnamed-chunk-2-1.png │ │ │ │ │ ├── unnamed-chunk-3-1.png │ │ │ │ │ ├── unnamed-chunk-4-1.png │ │ │ │ │ ├── unnamed-chunk-5-1.png │ │ │ │ │ ├── unnamed-chunk-6-1.png │ │ │ │ │ ├── unnamed-chunk-7-1.png │ │ │ │ │ ├── unnamed-chunk-8-1.png │ │ │ │ │ └── unnamed-chunk-9-1.png │ │ │ └── fakejson │ │ │ │ ├── epicurve-by-day.json │ │ │ │ └── epicurve-by-week.json │ │ ├── graphs.md │ │ ├── images │ │ │ ├── archive │ │ │ │ └── volunteer_individ.jpg │ │ │ ├── graphs │ │ │ │ ├── unnamed-chunk-10-1.png │ │ │ │ ├── unnamed-chunk-11-1.png │ │ │ │ ├── unnamed-chunk-11-2.png │ │ │ │ ├── unnamed-chunk-12-1.png │ │ │ │ ├── unnamed-chunk-13-1.png │ │ │ │ ├── unnamed-chunk-14-1.png │ │ │ │ ├── unnamed-chunk-15-1.png │ │ │ │ ├── unnamed-chunk-2-1.png │ │ │ │ ├── unnamed-chunk-3-1.png │ │ │ │ ├── unnamed-chunk-4-1.png │ │ │ │ ├── unnamed-chunk-5-1.png │ │ │ │ ├── unnamed-chunk-6-1.png │ │ │ │ ├── unnamed-chunk-7-1.png │ │ │ │ ├── unnamed-chunk-8-1.png │ │ │ │ └── unnamed-chunk-9-1.png │ │ │ └── index │ │ │ │ ├── Scanned-Document-1.png │ │ │ │ ├── Scanned-Document-2.png │ │ │ │ ├── Scanned-Document-3.png │ │ │ │ ├── Scanned-Document-4.png │ │ │ │ ├── Scanned-Document-5.png │ │ │ │ ├── unnamed-chunk-2-1.png │ │ │ │ ├── unnamed-chunk-3-1.png │ │ │ │ └── unnamed-chunk-4-1.png │ │ └── index.md │ ├── Core │ │ ├── events.md │ │ └── index.md │ ├── Portal │ │ └── index.md │ ├── Reporting │ │ ├── 2017-09-29 14-31 page 1.jpg │ │ ├── Detailed_Alert_Map.jpg │ │ ├── Detailed_Alert_Timeline.jpg │ │ └── index.md │ ├── Sms │ │ ├── Architecture_Duplex.png │ │ ├── Architecture_Incoming.png │ │ ├── Flow_Duplex.png │ │ ├── Flow_Incoming.png │ │ ├── Postman_Eagle_Sample.png │ │ ├── Postman_Sample.png │ │ └── index.md │ ├── User Management │ │ └── index.md │ ├── Volunteer Reporting │ │ ├── Processes │ │ │ └── ReceivingTextMessage.md │ │ ├── data collector workflow 2017.09.30.jpg │ │ ├── data_flow.png │ │ ├── index.md │ │ └── userstories │ │ │ ├── Known Data collector sends in valid aggregate case report.md │ │ │ └── Known Data collector sends in valid single case report.md │ ├── actors.md │ └── index.md ├── Requirements │ ├── CBS Functional requirements specification.pdf │ └── March 2017 - CBS v2 Diagrams.pdf ├── docfx.json ├── index.md ├── readme.md └── toc.yml ├── LICENSE ├── Logs └── FieldTest_April2018 │ └── VolunteerReporting │ └── logs.txt ├── Meetings ├── 20170911 - Core Team - Planning │ ├── IMG_2161.JPG │ ├── IMG_2162.JPG │ ├── IMG_2163.JPG │ ├── IMG_2164.JPG │ ├── IMG_2165.JPG │ ├── IMG_2166.JPG │ ├── IMG_2167.JPG │ ├── IMG_2168.JPG │ ├── IMG_2169.JPG │ ├── IMG_2170.JPG │ ├── IMG_2171.JPG │ ├── IMG_2172.JPG │ ├── IMG_2173.JPG │ └── IMG_2174.JPG ├── 20170918 - Core Team sync.md ├── 20171010 - Core Team sync.md ├── 20171025 - Community standup.md ├── 20171118 - Community standup.md ├── 20180815 - Core Team sync.md ├── 20180912 - Core Team Sync ├── 20180919 - Core Team sync.md ├── 20181003 - Core Team sync.md ├── 20181017 - Core Team sync.md ├── 20181031 - Core Team sync.md ├── 20181129 - Core Team sync.md └── 20190115 - Core Team sync.md ├── NuGet.Config ├── README.md ├── Source ├── .dockerignore ├── Admin │ ├── Admin.sln │ ├── Concepts │ │ ├── Concepts.csproj │ │ ├── HealthRisks │ │ │ ├── CaseDefinition.cs │ │ │ ├── HealthRiskId.cs │ │ │ ├── HealthRiskName.cs │ │ │ ├── HealthRiskNumber.cs │ │ │ ├── KeyMessage.cs │ │ │ ├── KeyMessageId.cs │ │ │ └── Language.cs │ │ ├── NationalSocieties │ │ │ ├── NationalSocietyId.cs │ │ │ └── NationalSocietyName.cs │ │ ├── Projects │ │ │ ├── ProjectId.cs │ │ │ ├── ProjectName.cs │ │ │ └── ProjectSurveillanceContext.cs │ │ └── Users │ │ │ └── UserId.cs │ ├── Core │ │ ├── .dolittle │ │ │ ├── artifacts.json │ │ │ ├── event-horizons.json │ │ │ ├── resources.json │ │ │ ├── server.json │ │ │ ├── tenant-map.json │ │ │ ├── tenants.json │ │ │ └── topology.json │ │ ├── Core.csproj │ │ ├── Dockerfile │ │ ├── LoggingExtensions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SecurityExtensions.cs │ │ ├── Startup.cs │ │ └── hooks │ │ │ └── pre_push │ ├── Dockerfile │ ├── Domain │ │ ├── Admin │ │ │ ├── AddDataVerifier.cs │ │ │ ├── AddDataVerifierInputValidator.cs │ │ │ └── Rules.cs │ │ ├── AutomaticReplyMessages │ │ │ ├── Rules.cs │ │ │ ├── UpdateReplyMessagesConfig.cs │ │ │ └── UpdateReplyMessagesConfigInputValidator.cs │ │ ├── Domain.csproj │ │ ├── HealthRisks │ │ │ ├── AddKeyMessageToHealthRisk.cs │ │ │ ├── AddKeyMessageToHealthRiskInputInputValidator.cs │ │ │ ├── AddProjectHealthRisk.cs │ │ │ ├── AddProjectHealthRiskInputValidator.cs │ │ │ ├── AddThresholdToHealthRisk.cs │ │ │ ├── AddThresholdToHealthRiskInputValidator.cs │ │ │ ├── AssociateHealthRiskWithProject.cs │ │ │ ├── CreateHealthRisk.cs │ │ │ ├── CreateHealthRiskInputValidator.cs │ │ │ ├── DeleteHealthRisk.cs │ │ │ ├── DeleteHealthRiskInputValidator.cs │ │ │ ├── HealthRisk.cs │ │ │ ├── HealthRiskCommandHandler.cs │ │ │ ├── KeyMessagesCommandHandler.cs │ │ │ ├── ModifyHealthRisInputValidator.cs │ │ │ ├── ModifyHealthRisk.cs │ │ │ ├── OverrideCaseDefinition.cs │ │ │ ├── OverrideHealthRiskName.cs │ │ │ ├── Rules.cs │ │ │ ├── SetCaseDefinition.cs │ │ │ └── SetHealthRiskName.cs │ │ ├── NationalSocieties │ │ │ ├── CreateNationalSociety.cs │ │ │ ├── CreateNationalSocietyBusinessValidator.cs │ │ │ ├── CreateNationalSocietyInputValidator.cs │ │ │ ├── NationalSociety.cs │ │ │ └── NationalSocietyCommandHandler.cs │ │ ├── Projects │ │ │ ├── CreateProject.cs │ │ │ ├── CreateProjectInputValidator.cs │ │ │ ├── Project.cs │ │ │ ├── ProjectCommandHandler.cs │ │ │ ├── Rules.cs │ │ │ ├── UpdateProject.cs │ │ │ ├── UpdateProjectHealthRiskThreshold.cs │ │ │ ├── UpdateProjectHealthRiskThresholdValidator.cs │ │ │ └── UpdateProjectValidator.cs │ │ ├── Tests │ │ │ ├── CreateHealthRiskTestData.cs │ │ │ ├── CreateHealthRiskTestDataBusinessValidator.cs │ │ │ ├── CreateHealthRiskTestDataInputValidator.cs │ │ │ ├── CreateNationalSocietyTestData.cs │ │ │ ├── CreateNationalSocietyTestDataBusinessValidator.cs │ │ │ ├── CreateNationalSocietyTestDataInputValidator.cs │ │ │ ├── CreateProjectTestData.cs │ │ │ ├── CreateProjectTestDataBusinessValidator.cs │ │ │ ├── CreateProjectTestDataInputValidator.cs │ │ │ ├── CreateProjectsHealthRiskTestData.cs │ │ │ ├── CreateProjectsHealthRiskTestDataBusinessValidator.cs │ │ │ ├── CreateProjectsHealthRiskTestDataInputValidator.cs │ │ │ ├── CreateUserTestData.cs │ │ │ ├── CreateUserTestDataBusinessValidator.cs │ │ │ ├── CreateUserTestDataInputValidator.cs │ │ │ ├── Data │ │ │ │ ├── HealthRiskWithKeyMessage.json │ │ │ │ ├── HealthRisks.json │ │ │ │ ├── NationalSocieties.json │ │ │ │ ├── Projects.json │ │ │ │ └── Users.json │ │ │ └── TestDataCommandHandler.cs │ │ └── Users │ │ │ ├── CreateUser.cs │ │ │ ├── CreateUserBusinessValidator.cs │ │ │ ├── CreateUserInputValidator.cs │ │ │ └── User.cs │ ├── Events │ │ ├── Admin │ │ │ ├── DataVerifierAdded.cs │ │ │ └── DataVerifierRemoved.cs │ │ ├── AutomaticReplyMessages │ │ │ ├── MessageUpdated.cs │ │ │ └── ReplyMessageConfigUpdated.cs │ │ ├── Events.csproj │ │ ├── HealthRisks │ │ │ ├── HealthRiskCaseDefinitionOverridden.cs │ │ │ ├── HealthRiskCaseDefinitionSet.cs │ │ │ ├── HealthRiskCreated.cs │ │ │ ├── HealthRiskDeleted.cs │ │ │ ├── HealthRiskModified.cs │ │ │ ├── HealthRiskNameOverridden.cs │ │ │ ├── HealthRiskNameSet.cs │ │ │ ├── KeyMessageAddedToHealthRisk.cs │ │ │ └── ThresholdAddedToHealthRIsk.cs │ │ ├── NationalSocieties │ │ │ └── NationalSocietyCreated.cs │ │ ├── Projects │ │ │ ├── ProjectCreated.cs │ │ │ ├── ProjectDeleted.cs │ │ │ ├── ProjectHealthRiskAdded.cs │ │ │ ├── ProjectHealthRiskRemoved.cs │ │ │ ├── ProjectHealthRiskThresholdUpdate.cs │ │ │ └── ProjectUpdated.cs │ │ └── Users │ │ │ └── UserCreated.cs │ ├── HealthRisks.txt │ ├── NationalSociety.txt │ ├── Read │ │ ├── AutomaticReplyMessages │ │ │ ├── AllReplyMessages.cs │ │ │ ├── ReplyMessageById.cs │ │ │ └── ReplyMessagesConfig.cs │ │ ├── HealthRisks │ │ │ ├── AllHealthRisks.cs │ │ │ ├── HealthRisk.cs │ │ │ ├── HealthRiskById.cs │ │ │ ├── HealthRiskEventProcessors.cs │ │ │ └── KeyMessageEventProcessors.cs │ │ ├── NationalSocieties │ │ │ ├── AllNationalSocieties.cs │ │ │ ├── NationalSociety.cs │ │ │ ├── NationalSocietyById.cs │ │ │ └── NationalSocietyEventProcessors.cs │ │ ├── Projects │ │ │ ├── AllProjects.cs │ │ │ ├── Project.cs │ │ │ ├── ProjectById.cs │ │ │ ├── ProjectEventProcessor.cs │ │ │ ├── ProjectHealthRisk.cs │ │ │ └── ProjectHealthRiskVersion.cs │ │ ├── Read.csproj │ │ └── Users │ │ │ ├── AllUsers.cs │ │ │ ├── User.cs │ │ │ ├── UserById.cs │ │ │ └── UserEventProcessor.cs │ ├── Rules │ │ ├── Admin │ │ │ └── IsUserExisting.cs │ │ ├── AutomaticReplyMessages │ │ │ ├── IsTagValid.cs │ │ │ └── IsTagsValid.cs │ │ ├── HealthRisks │ │ │ ├── IsHealthRiskExisting.cs │ │ │ ├── IsHealthRiskUniqueWithinProject.cs │ │ │ └── IsWithinNumberOfHealthRisksLimit.cs │ │ ├── Projects │ │ │ ├── IsProjectNameUnique.cs │ │ │ └── IsUserNotVerifier.cs │ │ └── Rules.csproj │ ├── Web │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── Dockerfile │ │ ├── angular.json │ │ ├── browserslist │ │ ├── hooks │ │ │ └── pre_push │ │ ├── nginx-default.conf │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Admin │ │ │ │ │ └── AddDataVerifier.js │ │ │ │ ├── AutomaticReplyMessages │ │ │ │ │ ├── AllReplyMessages.js │ │ │ │ │ ├── ReplyMessageById.js │ │ │ │ │ ├── ReplyMessagesConfig.js │ │ │ │ │ └── UpdateReplyMessagesConfig.js │ │ │ │ ├── HealthRisks │ │ │ │ │ ├── AddKeyMessageToHealthRisk.js │ │ │ │ │ ├── AddProjectHealthRisk.js │ │ │ │ │ ├── AddThresholdToHealthRisk.js │ │ │ │ │ ├── AllHealthRisks.js │ │ │ │ │ ├── CreateHealthRisk.js │ │ │ │ │ ├── DeleteHealthRisk.js │ │ │ │ │ ├── HealthRisk.js │ │ │ │ │ ├── HealthRiskById.js │ │ │ │ │ ├── ModifyHealthRisk.js │ │ │ │ │ ├── OverrideCaseDefinition.js │ │ │ │ │ ├── OverrideHealthRiskName.js │ │ │ │ │ ├── SetCaseDefinition.js │ │ │ │ │ ├── SetHealthRiskName.js │ │ │ │ │ ├── add-edit-healthRisk │ │ │ │ │ │ ├── add-edit-healthRisk.component.html │ │ │ │ │ │ ├── add-edit-healthRisk.component.scss │ │ │ │ │ │ └── add-edit-healthRisk.component.ts │ │ │ │ │ ├── delete-health-risk │ │ │ │ │ │ ├── delete-healthrisk.component.html │ │ │ │ │ │ └── delete-healthrisk.component.ts │ │ │ │ │ ├── healthRisk-list │ │ │ │ │ │ ├── healthRisk-list.component.html │ │ │ │ │ │ ├── healthRisk-list.component.scss │ │ │ │ │ │ └── healthRisk-list.component.ts │ │ │ │ │ ├── healthRisks-routing.module.ts │ │ │ │ │ └── healthRisks.module.ts │ │ │ │ ├── NationalSocieties │ │ │ │ │ ├── AllNationalSocieties.js │ │ │ │ │ ├── CreateNationalSociety.js │ │ │ │ │ ├── NationalSociety.js │ │ │ │ │ └── NationalSocietyById.js │ │ │ │ ├── Projects │ │ │ │ │ ├── AllProjects.js │ │ │ │ │ ├── CreateProject.js │ │ │ │ │ ├── Project.js │ │ │ │ │ ├── ProjectById.js │ │ │ │ │ ├── ProjectHealthRiskVersion.js │ │ │ │ │ ├── UpdateProject.js │ │ │ │ │ ├── UpdateProjectHealthRiskThreshold.js │ │ │ │ │ ├── add-project │ │ │ │ │ │ ├── add-project.component.html │ │ │ │ │ │ ├── add-project.component.scss │ │ │ │ │ │ └── add-project.component.ts │ │ │ │ │ ├── project-list │ │ │ │ │ │ ├── project-list.component.html │ │ │ │ │ │ ├── project-list.component.scss │ │ │ │ │ │ └── project-list.component.ts │ │ │ │ │ ├── projects-routing.module.ts │ │ │ │ │ └── projects.module.ts │ │ │ │ ├── Tests │ │ │ │ │ ├── CreateHealthRiskTestData.js │ │ │ │ │ ├── CreateNationalSocietyTestData.js │ │ │ │ │ ├── CreateProjectTestData.js │ │ │ │ │ ├── CreateProjectsHealthRiskTestData.js │ │ │ │ │ └── CreateUserTestData.js │ │ │ │ ├── Users │ │ │ │ │ ├── AllUsers.js │ │ │ │ │ ├── CreateUser.js │ │ │ │ │ ├── User.js │ │ │ │ │ └── UserById.js │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── core │ │ │ │ │ ├── core.module.ts │ │ │ │ │ └── module-import-guard.ts │ │ │ │ ├── navigation │ │ │ │ │ ├── navbar-host.component.html │ │ │ │ │ └── navbar-host.component.ts │ │ │ │ ├── services │ │ │ │ │ └── app-insights-service.ts │ │ │ │ └── shared │ │ │ │ │ └── shared.module.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── bootstrap │ │ │ │ │ ├── _theme.scss │ │ │ │ │ └── _variables.scss │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ ├── environment.test.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.scss │ │ │ ├── tsconfig.app.json │ │ │ └── typings.d.ts │ │ └── tsconfig.json │ ├── bounded-context.json │ └── readme.md ├── Alerts │ ├── Alerts.sln │ ├── Concepts │ │ ├── AlertRules │ │ │ ├── AlertRuleName.cs │ │ │ ├── DistanceBetweenCasesInMeters.cs │ │ │ ├── NumberOfCasesThreshold.cs │ │ │ ├── RuleId.cs │ │ │ └── ThresholdTimeframeInHours.cs │ │ ├── Alerts │ │ │ ├── AlertId.cs │ │ │ ├── AlertNumber.cs │ │ │ └── AlertStatus.cs │ │ ├── CaseReports │ │ │ ├── AgeGroup.cs │ │ │ └── Sex.cs │ │ ├── Concepts.csproj │ │ ├── DataCollector │ │ │ ├── DataCollectorId.cs │ │ │ ├── DataCollectorIdValidator.cs │ │ │ ├── Language.cs │ │ │ ├── Location.cs │ │ │ ├── PhoneNumber.cs │ │ │ └── Sex.cs │ │ ├── DataOwners │ │ │ ├── DataOwnerId.cs │ │ │ ├── Email.cs │ │ │ └── NameOfDataOwner.cs │ │ ├── HealthRisks │ │ │ └── HealthRiskNumber.cs │ │ └── Report │ │ │ └── ReportId.cs │ ├── Core │ │ ├── .dolittle │ │ │ ├── artifacts.json │ │ │ ├── event-horizons.json │ │ │ ├── resources.json │ │ │ ├── server.json │ │ │ ├── tenant-map.json │ │ │ ├── tenants.json │ │ │ └── topology.json │ │ ├── Core.csproj │ │ ├── Dockerfile │ │ ├── LoggingExtensions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SecurityExtensions.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── hooks │ │ │ └── pre_push │ ├── Dockerfile │ ├── Domain.Specs │ │ └── Domain.Specs.csproj │ ├── Domain │ │ ├── AlertRules │ │ │ ├── AlertRule.cs │ │ │ ├── AlertRuleCommandHandler.cs │ │ │ ├── CreateAlertRule.cs │ │ │ ├── CreateAlertRuleBusinessValidator.cs │ │ │ ├── CreateAlertRuleInputValidator.cs │ │ │ ├── DeleteAlertRule.cs │ │ │ └── UpdateAlertRule.cs │ │ ├── Alerts │ │ │ ├── Alerts.cs │ │ │ ├── CloseAlert.cs │ │ │ ├── CloseAlertBusinessValidator.cs │ │ │ ├── CloseAlertCommandHandler.cs │ │ │ └── CloseAlertInputValidator.cs │ │ ├── DataOwners │ │ │ ├── DataOwner.cs │ │ │ ├── RegisterDataOwner.cs │ │ │ ├── RegisterOwnerBusinessValidator.cs │ │ │ ├── RegisterOwnerCommandHandler.cs │ │ │ └── RegisterOwnerInputValidator.cs │ │ ├── Domain.csproj │ │ └── Reports │ │ │ ├── CaseReport.cs │ │ │ ├── CaseReportData.cs │ │ │ ├── CasesCommandHandler.cs │ │ │ ├── ForcePublishNewCaseReport.cs │ │ │ ├── ForcePublishNewCaseReportBusinessValidator.cs │ │ │ └── ForcePublishNewCaseReportInputValidator.cs │ ├── Events.Admin │ │ ├── Events.Admin.csproj │ │ └── HealthRisks │ │ │ └── HealthRiskCreated.cs │ ├── Events.Reporting │ │ ├── CaseReports │ │ │ └── CaseReportRecieved.cs │ │ └── Events.Reporting.csproj │ ├── Events │ │ ├── AlertRules │ │ │ ├── AlertRuleCreated.cs │ │ │ ├── AlertRuleDeleted.cs │ │ │ └── AlertRuleUpdated.cs │ │ ├── Alerts │ │ │ ├── AlertClosed.cs │ │ │ ├── AlertOpened.cs │ │ │ └── ReportAddedToAlert.cs │ │ ├── DataCollectors │ │ │ ├── Changing │ │ │ │ ├── DataCollectorLocationChanged.cs │ │ │ │ ├── DataCollectorPrefferedLanguageChanged.cs │ │ │ │ ├── DataCollectorUserInformationChanged.cs │ │ │ │ └── DataCollectorVillageChanged.cs │ │ │ ├── PhoneNumber │ │ │ │ ├── PhoneNumberAddedToDataCollector.cs │ │ │ │ └── PhoneNumberRemovedFromDataCollector.cs │ │ │ └── Registration │ │ │ │ ├── DataCollectorRegistered.cs │ │ │ │ └── DataCollectorRemoved.cs │ │ ├── DataOwners │ │ │ └── DataOwnerRegistered.cs │ │ ├── Events.csproj │ │ └── Reports │ │ │ └── ReportRegistered.cs │ ├── Policies.Specs │ │ ├── Policies.Specs.csproj │ │ └── for_AlertRules │ │ │ ├── given │ │ │ └── an_aggregate.cs │ │ │ └── when_something_happens.cs │ ├── Policies │ │ ├── AlertRules │ │ │ └── AlertRulesProcessor.cs │ │ ├── Alerts │ │ │ ├── AlertsEventProcessor.cs │ │ │ ├── BasicMailSender.cs │ │ │ ├── IMailSender.cs │ │ │ └── MailSenderBinder.cs │ │ ├── CaseReports │ │ │ └── CaseReportsProcessor.cs │ │ └── Policies.csproj │ ├── README.md │ ├── Read.Specs │ │ └── Read.Specs.csproj │ ├── Read │ │ ├── AlertRules │ │ │ ├── AlertRule.cs │ │ │ ├── AlertRuleById.cs │ │ │ ├── AlertRuleEventProcessor.cs │ │ │ └── AllAlertRules.cs │ │ ├── Alerts │ │ │ ├── AlertEventProcesor.cs │ │ │ ├── AlertOverview.cs │ │ │ ├── AllAlertOverviews.cs │ │ │ └── Open │ │ │ │ ├── EventProcessor.cs │ │ │ │ └── OpenAlert.cs │ │ ├── DataCollectors │ │ │ ├── AllDataCollectors.cs │ │ │ ├── DataCollector.cs │ │ │ ├── DataCollectorById.cs │ │ │ └── DataCollectorEventProcessor.cs │ │ ├── DataOwners │ │ │ ├── DataOwner.cs │ │ │ ├── DataOwnerProcessor.cs │ │ │ └── GetDataOwner.cs │ │ ├── Read.csproj │ │ └── Reports │ │ │ ├── AllReports.cs │ │ │ ├── AvailableForRules │ │ │ ├── AvailableReport.cs │ │ │ └── EventProcessor.cs │ │ │ ├── Report.cs │ │ │ └── ReportEventProcessor.cs │ ├── Rules.Specs │ │ └── Rules.Specs.csproj │ ├── Rules │ │ └── Rules.csproj │ ├── Web │ │ ├── .babelrc │ │ ├── Dockerfile │ │ ├── Environments │ │ │ ├── demo_api.env │ │ │ ├── local_api.env │ │ │ ├── mock_api.env │ │ │ └── production.env │ │ ├── Features │ │ │ ├── AlertRules │ │ │ │ ├── AlertRule.js │ │ │ │ ├── AlertRuleById.js │ │ │ │ ├── AllAlertRules.js │ │ │ │ ├── CreateAlertRule.js │ │ │ │ ├── DeleteAlertRule.js │ │ │ │ └── UpdateAlertRule.js │ │ │ ├── Alerts │ │ │ │ ├── AlertOverview.js │ │ │ │ ├── AllAlertOverviews.js │ │ │ │ ├── CloseAlert.js │ │ │ │ └── Open │ │ │ │ │ └── OpenAlert.js │ │ │ ├── DataCollectors │ │ │ │ ├── AllDataCollectors.js │ │ │ │ ├── DataCollector.js │ │ │ │ └── DataCollectorById.js │ │ │ ├── DataOwners │ │ │ │ ├── DataOwner.js │ │ │ │ ├── GetDataOwner.js │ │ │ │ └── RegisterDataOwner.js │ │ │ └── Reports │ │ │ │ ├── AllReports.js │ │ │ │ ├── AvailableForRules │ │ │ │ └── AvailableReport.js │ │ │ │ ├── ForcePublishNewCaseReport.js │ │ │ │ └── Report.js │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── README.md │ │ ├── assets │ │ │ └── logo.png │ │ ├── hooks │ │ │ └── pre_push │ │ ├── index.ejs │ │ ├── jsconfig.json │ │ ├── karma.conf.js │ │ ├── mocking │ │ │ ├── MockCommandCoordinator.js │ │ │ └── MockQueryCoordinator.js │ │ ├── nginx-default.conf │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── assets │ │ │ │ ├── logo.png │ │ │ │ └── main.scss │ │ │ ├── components │ │ │ │ ├── AddAlertRule.js │ │ │ │ ├── AlertMenu.js │ │ │ │ ├── AlertOverview.js │ │ │ │ ├── AlertRule.js │ │ │ │ ├── AlertRuleOverview.js │ │ │ │ ├── App.js │ │ │ │ ├── Navigation │ │ │ │ │ ├── CBSNavigation.js │ │ │ │ │ ├── cbs-navigation-v1.scss │ │ │ │ │ └── cbs-navigation-v2.scss │ │ │ │ └── RegisterDataOwner.js │ │ │ ├── coordinators.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── saga.js │ │ │ └── store.js │ │ ├── wallaby.js │ │ ├── webpack.config.js │ │ └── webpack.config.prod.js │ └── bounded-context.json ├── Analytics │ ├── .dockerignore │ ├── Analytics.sln │ ├── Concepts │ │ ├── Alerts │ │ │ ├── AlertId.cs │ │ │ └── AlertRuleId.cs │ │ ├── CaseReportId.cs │ │ ├── Concepts.csproj │ │ ├── Constants.cs │ │ ├── DataCollectors │ │ │ ├── DataCollectorId.cs │ │ │ ├── DataCollectorName.cs │ │ │ └── Sex.cs │ │ ├── Day.cs │ │ ├── DistrictId.cs │ │ ├── DistrictName.cs │ │ ├── HealthRisks │ │ │ ├── HealthRiskId.cs │ │ │ ├── HealthRiskName.cs │ │ │ └── HealthRiskNumber.cs │ │ ├── Location.cs │ │ ├── NumberOfCasereports.cs │ │ ├── NumberOfPeople.cs │ │ ├── RegionId.cs │ │ ├── RegionName.cs │ │ ├── VillageId.cs │ │ └── VillageName.cs │ ├── Core │ │ ├── .dolittle │ │ │ ├── artifacts.json │ │ │ ├── event-horizons.json │ │ │ ├── resources.json │ │ │ ├── server.json │ │ │ ├── tenant-map.json │ │ │ ├── tenants.json │ │ │ └── topology.json │ │ ├── Core.csproj │ │ ├── LoggingExtensions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SecurityExtensions.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── Dockerfile │ ├── Events.Admin │ │ ├── Events.Admin.csproj │ │ └── HealthRisks │ │ │ ├── HealthRiskCreated.cs │ │ │ ├── HealthRiskDeleted.cs │ │ │ └── HealthRiskModified.cs │ ├── Events.Alerts │ │ ├── Alerts │ │ │ ├── AlertOpened.cs │ │ │ ├── AlertRuleCreated.cs │ │ │ └── AlertRuleUpdated.cs │ │ └── Events.Alerts.csproj │ ├── Events.Reporting │ │ ├── CaseReports │ │ │ └── CaseReportReceived.cs │ │ ├── DataCollectors │ │ │ ├── DataCollectorBeganTraining.cs │ │ │ ├── DataCollectorCompletedTraining.cs │ │ │ ├── DataCollectorRegistered.cs │ │ │ ├── DataCollectorVillageChanged.cs │ │ │ └── LastActiveUpdated.cs │ │ └── Events.Reporting.csproj │ ├── Read │ │ ├── Alerts │ │ │ ├── Alert.cs │ │ │ ├── AlertRule.cs │ │ │ └── EventProcessor.cs │ │ ├── CaseReports │ │ │ ├── AllCaseReportsQuery.cs │ │ │ ├── CaseReport.cs │ │ │ ├── CaseReportEventProcessor.cs │ │ │ ├── CaseReportsPerHealthRiskPerDay.cs │ │ │ ├── CaseReportsPerHealthRiskPerDayQuery.cs │ │ │ ├── CaseReportsPerRegionLast4Weeks.cs │ │ │ ├── CaseReportsPerRegionLast4WeeksQuery.cs │ │ │ ├── HealthRisksInRegionsLast4Weeks.cs │ │ │ ├── RegionWithHealthRisk.cs │ │ │ ├── TotalReports.cs │ │ │ └── TotalReportsQuery.cs │ │ ├── DataCollectors │ │ │ ├── AllRegions.cs │ │ │ ├── DataCollector.cs │ │ │ ├── DataCollectorsQuery.cs │ │ │ ├── District.cs │ │ │ ├── EventProcessor.cs │ │ │ ├── Region.cs │ │ │ └── Village.cs │ │ ├── HealthRisks │ │ │ ├── AllHealthRisks.cs │ │ │ ├── EventProcessor.cs │ │ │ └── HealthRisk.cs │ │ ├── Map │ │ │ ├── CaseReportForMap.cs │ │ │ ├── CaseReportsLast4Weeks.cs │ │ │ ├── CaseReportsLast4WeeksQuery.cs │ │ │ ├── CaseReportsLast7Days.cs │ │ │ ├── CaseReportsLast7DaysQuery.cs │ │ │ ├── CaseReportsPerHealthRisk.cs │ │ │ └── MapProcessor.cs │ │ ├── Overview │ │ │ ├── Last4WeeksPerHealthRisk │ │ │ │ ├── CaseReportsLast4WeeksForHealthRisk.cs │ │ │ │ ├── CaseReportsLast4WeeksPerHealthRisk.cs │ │ │ │ ├── CaseReportsLast4WeeksPerHealthRiskQuery.cs │ │ │ │ └── EventProcessor.cs │ │ │ └── LastWeekTotals │ │ │ │ ├── CaseReportTotals.cs │ │ │ │ ├── CaseReportTotalsQuery.cs │ │ │ │ └── EventProcessor.cs │ │ └── Read.csproj │ ├── Web │ │ ├── .babelrc │ │ ├── Controllers │ │ │ └── TestDataGeneratorController.cs │ │ ├── DependenciesExtensions.cs │ │ ├── Dockerfile │ │ ├── Environments │ │ │ ├── development.env │ │ │ └── production.env │ │ ├── README.md │ │ ├── assets │ │ │ ├── dolittle_logo_negative.svg │ │ │ ├── dolittle_logo_positive.svg │ │ │ ├── dolittle_symbol.svg │ │ │ ├── images │ │ │ │ └── rawpixel-653764-unsplash.jpg │ │ │ └── splash.png │ │ ├── dolittle.env │ │ ├── index.ejs │ │ ├── jsconfig.json │ │ ├── karma.conf.js │ │ ├── nginx-default.conf │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── run.js │ │ ├── src │ │ │ ├── Features │ │ │ │ ├── Alerts │ │ │ │ │ ├── Alert.js │ │ │ │ │ └── AlertRule.js │ │ │ │ ├── CaseReports │ │ │ │ │ ├── AllCaseReportsQuery.js │ │ │ │ │ ├── CaseReport.js │ │ │ │ │ ├── CaseReportsPerHealthRiskPerDay.js │ │ │ │ │ ├── CaseReportsPerHealthRiskPerDayQuery.js │ │ │ │ │ ├── CaseReportsPerRegionLast4Weeks.js │ │ │ │ │ ├── CaseReportsPerRegionLast4WeeksQuery.js │ │ │ │ │ ├── HealthRisksInRegionsLast4Weeks.js │ │ │ │ │ ├── HealthRisksInRegionsLast7Days.js │ │ │ │ │ ├── RegionWithHealthRisk.js │ │ │ │ │ ├── TotalReports.js │ │ │ │ │ └── TotalReportsQuery.js │ │ │ │ ├── DataCollectors │ │ │ │ │ ├── AllRegions.js │ │ │ │ │ ├── DataCollector.js │ │ │ │ │ ├── DataCollectorsQuery.js │ │ │ │ │ ├── District.js │ │ │ │ │ ├── Region.js │ │ │ │ │ └── Village.js │ │ │ │ ├── HealthRisks │ │ │ │ │ ├── AllHealthRisks.js │ │ │ │ │ └── HealthRisk.js │ │ │ │ ├── Map │ │ │ │ │ ├── CaseReportsLast30Days.js │ │ │ │ │ ├── CaseReportsLast30DaysQuery.js │ │ │ │ │ ├── CaseReportsLast4Weeks.js │ │ │ │ │ ├── CaseReportsLast4WeeksQuery.js │ │ │ │ │ ├── CaseReportsLast7Days.js │ │ │ │ │ └── CaseReportsLast7DaysQuery.js │ │ │ │ └── Overview │ │ │ │ │ ├── Last4WeeksPerHealthRisk │ │ │ │ │ ├── CaseReportsLast4WeeksPerHealthRisk.js │ │ │ │ │ └── CaseReportsLast4WeeksPerHealthRiskQuery.js │ │ │ │ │ └── LastWeekTotals │ │ │ │ │ ├── CaseReportTotals.js │ │ │ │ │ └── CaseReportTotalsQuery.js │ │ │ ├── actions │ │ │ │ └── analysisactions.js │ │ │ ├── assets │ │ │ │ ├── colors.scss │ │ │ │ ├── country-overview.scss │ │ │ │ ├── inclusions.scss │ │ │ │ ├── main.scss │ │ │ │ ├── map.css │ │ │ │ ├── react-leaflet.scss │ │ │ │ ├── table.scss │ │ │ │ └── vars.scss │ │ │ ├── components │ │ │ │ ├── CountryKeyFigures │ │ │ │ │ └── CountryKeyFigures.js │ │ │ │ ├── CountryOverview │ │ │ │ │ └── CountryOverview.js │ │ │ │ ├── Lightweight │ │ │ │ │ └── LightweightAreaOverview.js │ │ │ │ ├── Map.js │ │ │ │ ├── MapOverview.js │ │ │ │ ├── MapPieChart.js │ │ │ │ ├── Reports │ │ │ │ │ ├── ReportsPerHealthRiskPerDay.js │ │ │ │ │ └── ReportsPerHealthRiskPerRegionLast4Weeks.js │ │ │ │ ├── healthRisk │ │ │ │ │ └── HealthRiskSelector.js │ │ │ │ └── lastWeekTotals │ │ │ │ │ └── LastWeekTotals.js │ │ │ ├── exports.js │ │ │ ├── index.js │ │ │ ├── reducers │ │ │ │ ├── analyticsReducer.js │ │ │ │ └── index.js │ │ │ └── utils │ │ │ │ ├── dateUtils.js │ │ │ │ ├── request.js │ │ │ │ └── routes.js │ │ ├── wallaby.js │ │ └── webpack.config.js │ └── bounded-context.json ├── Navigation │ ├── Web.Angular │ │ ├── nav-top-bar.component-v2.scss │ │ ├── nav-top-bar.component.html │ │ ├── nav-top-bar.component.scss │ │ ├── nav-top-bar.component.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ └── readme.md │ └── Web.React │ │ ├── .babelrc │ │ ├── index.js │ │ ├── lib │ │ ├── cbs-navigation.scss │ │ ├── colors.scss │ │ ├── index.js │ │ └── vars.scss │ │ ├── package-lock.json │ │ ├── package.json │ │ └── readme.md ├── NotificationGateway │ ├── Concepts │ │ ├── Concepts.csproj │ │ ├── MessageId.cs │ │ └── SMS │ │ │ ├── Gateways │ │ │ ├── ApiKey.cs │ │ │ ├── MessageId.cs │ │ │ ├── ModemNumber.cs │ │ │ ├── Name.cs │ │ │ ├── OID.cs │ │ │ ├── SmsGatewayId.cs │ │ │ └── SmsGatewayIdValidator.cs │ │ │ ├── Message.cs │ │ │ └── PhoneNumber.cs │ ├── Core │ │ ├── .dolittle │ │ │ ├── artifacts.json │ │ │ ├── event-horizons.json │ │ │ ├── resources.json │ │ │ ├── server.json │ │ │ ├── tenant-map.json │ │ │ ├── tenants.json │ │ │ └── topology.json │ │ ├── Core.csproj │ │ ├── Dockerfile │ │ ├── GatewayEndpoints │ │ │ ├── GatewayEventProcessor.cs │ │ │ ├── ITenantMapper.cs │ │ │ ├── ReceiveMessageFromSMSGatewayFailed.cs │ │ │ ├── SmsEagleController.cs │ │ │ ├── SmsEagleSamples │ │ │ │ ├── smseagle-1.sample │ │ │ │ ├── smseagle-2.sample │ │ │ │ └── smseagle-3.sample │ │ │ ├── TenantMapper.cs │ │ │ └── TenantMapperFileNotAccessible.cs │ │ ├── LoggingExtensions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Security │ │ │ ├── BypassingControllersManager.cs │ │ │ ├── ICanBypassSecurity.cs │ │ │ ├── ISecurityBypassingRequestManager.cs │ │ │ └── SecurityBindings.cs │ │ ├── SecurityExtensions.cs │ │ ├── Startup.cs │ │ ├── apikeyToTenant.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── hooks │ │ │ └── pre_push │ ├── Dockerfile │ ├── Domain.Specs │ │ └── Domain.Specs.csproj │ ├── Domain │ │ ├── Domain.csproj │ │ └── SMS │ │ │ ├── Gateways │ │ │ ├── AssignPhoneNumberToSmsGateway.cs │ │ │ ├── AssignPhoneNumberToSmsGatewayBusinessValidator.cs │ │ │ ├── AssignPhoneNumberToSmsGatewayInputValidator.cs │ │ │ ├── ReceiveMessageFromSMSGateway.cs │ │ │ ├── ReceiveMessageFromSMSGatewayBusinessValidator.cs │ │ │ ├── ReceiveMessageFromSMSGatewayInputValidator.cs │ │ │ ├── RegisterSmsGateway.cs │ │ │ ├── RegisterSmsGatewayBusinessValidator.cs │ │ │ ├── RegisterSmsGatewayInputValidator.cs │ │ │ ├── Rules.cs │ │ │ ├── SmsGatewayAggregate.cs │ │ │ └── SmsGatewayCommandHandlers.cs │ │ │ ├── SimulateReceivedMessage.cs │ │ │ ├── SimulateReceivedMessageBusinessValidator.cs │ │ │ ├── SimulateReceivedMessageInputValidator.cs │ │ │ ├── TextMessage.cs │ │ │ └── TextMessageCommandHandler.cs │ ├── Events │ │ ├── Events.csproj │ │ └── SMS │ │ │ ├── Gateways │ │ │ ├── SmsGatewayEnabled.cs │ │ │ ├── SmsGatewayNumberAssigned.cs │ │ │ └── SmsGatewayRegistered.cs │ │ │ └── TextMessageReceived.cs │ ├── NotificationGateway.sln │ ├── Policies.Specs │ │ └── Policies.Specs.csproj │ ├── Policies │ │ └── Policies.csproj │ ├── Read.Specs │ │ └── Read.Specs.csproj │ ├── Read │ │ ├── Read.csproj │ │ └── SMS │ │ │ ├── AllReceivedMessages.cs │ │ │ ├── Gateways │ │ │ ├── SmsGateway.cs │ │ │ ├── SmsGatewayEventProcessor.cs │ │ │ ├── SmsGatewayGetAllQuery.cs │ │ │ └── SmsGatewayGetEnabledQuery.cs │ │ │ ├── ReceivedMessage.cs │ │ │ └── TextMessageEventProcessor.cs │ ├── Rules.Specs │ │ └── Rules.Specs.csproj │ ├── Rules │ │ ├── Rules.csproj │ │ └── SMS │ │ │ └── Gateways │ │ │ ├── IsSmsGatewayExisting.cs │ │ │ ├── PhoneNumberNotExists.cs │ │ │ └── SMSGatewayMustBeEnabled.cs │ ├── Web │ │ ├── .babelrc │ │ ├── Dockerfile │ │ ├── Environments │ │ │ ├── development.env │ │ │ └── production.env │ │ ├── Features │ │ │ ├── App.js │ │ │ ├── SMS │ │ │ │ ├── AllReceivedMessages.js │ │ │ │ ├── Gateways │ │ │ │ │ ├── AssignPhoneNumberToSmsGateway.js │ │ │ │ │ ├── Gateways.js │ │ │ │ │ ├── ReceiveMessageFromSMSGateway.js │ │ │ │ │ ├── RegisterSmsGateway.js │ │ │ │ │ ├── SmsGateway.js │ │ │ │ │ ├── SmsGatewayGetAllQuery.js │ │ │ │ │ └── SmsGatewayGetEnabledQuery.js │ │ │ │ ├── Messages.js │ │ │ │ ├── ReceivedMessage.js │ │ │ │ └── SimulateReceivedMessage.js │ │ │ └── index.js │ │ ├── README.md │ │ ├── hooks │ │ │ └── pre_push │ │ ├── index.ejs │ │ ├── jsconfig.json │ │ ├── karma.conf.js │ │ ├── nginx-default.conf │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── wallaby.js │ │ ├── webpack.config.js │ │ └── webpack.config.prod.js │ └── bounded-context.json ├── Reporting │ ├── Concepts │ │ ├── AutomaticReplies │ │ │ ├── AutomaticReplyKeyMessageType.cs │ │ │ └── AutomaticReplyType.cs │ │ ├── CaseReports │ │ │ ├── AgeGroup.cs │ │ │ ├── CaseReportId.cs │ │ │ └── CaseReportIdValidator.cs │ │ ├── Concepts.csproj │ │ ├── DataCollectors │ │ │ ├── DataCollectorId.cs │ │ │ ├── DataCollectorIdValidator.cs │ │ │ ├── DisplayName.cs │ │ │ ├── DisplayNameValidator.cs │ │ │ ├── District.cs │ │ │ ├── DistrictValidator.cs │ │ │ ├── FullName.cs │ │ │ ├── FullNameValidator.cs │ │ │ ├── Language.cs │ │ │ ├── Location.cs │ │ │ ├── PhoneNumber.cs │ │ │ ├── PhoneNumberValidator.cs │ │ │ ├── Region.cs │ │ │ ├── RegionValidator.cs │ │ │ ├── Sex.cs │ │ │ ├── Village.cs │ │ │ ├── YearOfBirth.cs │ │ │ └── YearOfBirthValidator.cs │ │ ├── DataVerifiers │ │ │ ├── DataVerifierId.cs │ │ │ └── DataVerifierIdValidator.cs │ │ ├── HealthRisks │ │ │ ├── HealthRiskId.cs │ │ │ ├── HealthRiskIdValidator.cs │ │ │ ├── HealthRiskName.cs │ │ │ ├── HealthRiskNameValidator.cs │ │ │ ├── HealthRiskReadableId.cs │ │ │ └── HealthRiskReadableIdValidator.cs │ │ ├── Projects │ │ │ ├── ProjectId.cs │ │ │ ├── ProjectIdValidator.cs │ │ │ └── ProjectName.cs │ │ └── Region.cs │ ├── Core │ │ ├── .dolittle │ │ │ ├── artifacts.json │ │ │ ├── event-horizons.json │ │ │ ├── resources.json │ │ │ ├── server.json │ │ │ ├── tenant-map.json │ │ │ ├── tenants.json │ │ │ └── topology.json │ │ ├── CaseReports │ │ │ ├── ExportController.cs │ │ │ ├── Formats │ │ │ │ ├── CsvExporter.cs │ │ │ │ └── ExcelExporter.cs │ │ │ └── ICanExportCaseReports.cs │ │ ├── Core.csproj │ │ ├── Dockerfile │ │ ├── LoggingExtensions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SecurityExtensions.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── hooks │ │ │ └── pre_push │ ├── Dockerfile │ ├── Domain.Specs │ │ ├── Domain.Specs.csproj │ │ ├── Management │ │ │ └── for_data_collectors │ │ │ │ ├── when_adding_a_phone_number │ │ │ │ ├── and_validating_a_command_with_a_missing_data_collector_id.cs │ │ │ │ ├── and_validating_a_command_with_a_missing_phone_number.cs │ │ │ │ └── and_validating_a_valid_command.cs │ │ │ │ ├── when_beginning_training │ │ │ │ ├── and_validating_a_command_with_a_missing_data_collector_id.cs │ │ │ │ └── given │ │ │ │ │ └── a_command_builder.cs │ │ │ │ ├── when_deleting_a_datacollector │ │ │ │ ├── and_validating_a_command_with_a_missing_data_collector_id.cs │ │ │ │ └── given │ │ │ │ │ └── a_command_builder.cs │ │ │ │ ├── when_ending_training │ │ │ │ ├── and_validating_a_command_with_a_missing_data_collector_id.cs │ │ │ │ └── given │ │ │ │ │ └── a_command_builder.cs │ │ │ │ ├── when_registering_a_data_collector │ │ │ │ ├── and_validating_a_command_with_a_missing_data_collector_id.cs │ │ │ │ ├── and_validating_a_command_with_a_missing_display_name.cs │ │ │ │ ├── and_validating_a_command_with_a_missing_email.cs │ │ │ │ ├── and_validating_a_command_with_a_missing_full_name.cs │ │ │ │ ├── and_validating_a_command_with_a_missing_gps_location.cs │ │ │ │ ├── and_validating_a_command_with_an_invalid_data_verifier_Id.cs │ │ │ │ ├── and_validating_a_command_with_an_invalid_district.cs │ │ │ │ ├── and_validating_a_command_with_an_invalid_email.cs │ │ │ │ ├── and_validating_a_command_with_an_invalid_preferred_language.cs │ │ │ │ ├── and_validating_a_command_with_an_invalid_region.cs │ │ │ │ ├── and_validating_a_command_with_an_invalid_sex.cs │ │ │ │ ├── and_validating_a_command_with_an_invalid_year_of_birth.cs │ │ │ │ ├── and_validating_a_command_with_missing_phone_numbers.cs │ │ │ │ ├── and_validating_a_command_with_no_phone_numbers.cs │ │ │ │ ├── and_validating_a_valid_command.cs │ │ │ │ └── given │ │ │ │ │ └── a_command_builder.cs │ │ │ │ ├── when_removing_a_phone_number │ │ │ │ ├── and_validating_a_command_with_a_missing_data_collector_id.cs │ │ │ │ ├── and_validating_a_command_with_a_missing_phone_number.cs │ │ │ │ └── and_validating_a_valid_command.cs │ │ │ │ └── when_updating_a_data_collector │ │ │ │ ├── and_validating_a_command_with_a_missing_data_collector_id.cs │ │ │ │ ├── and_validating_a_command_with_a_missing_display_name.cs │ │ │ │ ├── and_validating_a_command_with_a_missing_email.cs │ │ │ │ ├── and_validating_a_command_with_a_missing_full_name.cs │ │ │ │ ├── and_validating_a_command_with_a_missing_gps_location.cs │ │ │ │ ├── and_validating_a_command_with_an_invalid_email.cs │ │ │ │ ├── and_validating_a_command_with_an_invalid_preferred_language.cs │ │ │ │ ├── and_validating_a_valid_command.cs │ │ │ │ └── given │ │ │ │ └── a_command_builder.cs │ │ └── ValidationResultExtensions.cs │ ├── Domain │ │ ├── Domain.csproj │ │ ├── Management │ │ │ └── DataCollectors │ │ │ │ ├── DataCollector.cs │ │ │ │ ├── EditInformation │ │ │ │ ├── AddPhoneNumberToDataCollector.cs │ │ │ │ ├── AddPhoneNumberToDataCollectorBusinessValidator.cs │ │ │ │ ├── AddPhoneNumberToDataCollectorInputValidator.cs │ │ │ │ ├── ChangeBaseInformation.cs │ │ │ │ ├── ChangeBaseInformationBusinessValidator.cs │ │ │ │ ├── ChangeBaseInformationInputValidator.cs │ │ │ │ ├── ChangeDataVerifier.cs │ │ │ │ ├── ChangeDataVerifierBusinessValidator.cs │ │ │ │ ├── ChangeDataVerifierInputValidator.cs │ │ │ │ ├── ChangeLocation.cs │ │ │ │ ├── ChangeLocationBusinessValidator.cs │ │ │ │ ├── ChangeLocationInputValidator.cs │ │ │ │ ├── ChangePreferredLanguage.cs │ │ │ │ ├── ChangePreferredLanguageBusinessValidator.cs │ │ │ │ ├── ChangePreferredLanguageInputValidator.cs │ │ │ │ ├── ChangeVillage.cs │ │ │ │ ├── ChangeVillageBusinessValidator.cs │ │ │ │ ├── ChangeVillageInputValidator.cs │ │ │ │ ├── InformationCommandHandler.cs │ │ │ │ ├── RemovePhoneNumberFromDataCollector.cs │ │ │ │ ├── RemovePhoneNumberFromDataCollectorBusinessValidator.cs │ │ │ │ └── RemovePhoneNumberFromDataCollectorInputValidator.cs │ │ │ │ ├── Registration │ │ │ │ ├── DeleteDataCollector.cs │ │ │ │ ├── DeleteDataCollectorBusinessValidator.cs │ │ │ │ ├── DeleteDataCollectorInputValidator.cs │ │ │ │ ├── RegisterDataCollector.cs │ │ │ │ ├── RegisterDataCollectorBusinessValidator.cs │ │ │ │ ├── RegisterDataCollectorInputValidator.cs │ │ │ │ └── RegistrationHandler.cs │ │ │ │ ├── Rules.cs │ │ │ │ └── Training │ │ │ │ ├── BeginTraining.cs │ │ │ │ ├── BeginTrainingBusinessValidator.cs │ │ │ │ ├── BeginTrainingInputValidator.cs │ │ │ │ ├── EndTraining.cs │ │ │ │ ├── EndTrainingBusinessValidator.cs │ │ │ │ ├── EndTrainingInputValidator.cs │ │ │ │ └── TrainingHandler.cs │ │ ├── Reporting │ │ │ ├── AutomaticReplyMessages │ │ │ │ ├── AutomaticRepliesCommandHandlers.cs │ │ │ │ ├── AutomaticReplyDefinition.cs │ │ │ │ ├── DefineAutomaticReplyForProject.cs │ │ │ │ ├── DefineAutomaticReplyForProjectValidator.cs │ │ │ │ └── DefineAutomaticReplyKeyMessageForProject.cs │ │ │ └── CaseReports │ │ │ │ └── CaseReporting.cs │ │ └── TestData │ │ │ ├── CaseReports │ │ │ └── PopulateCaseReportTestData.cs │ │ │ ├── Data │ │ │ ├── CaseReportTestDataHelper.cs │ │ │ ├── CaseReports.json │ │ │ ├── DataCollectors.json │ │ │ ├── HealthRiskTestDataHelper.cs │ │ │ └── HealthRisks.json │ │ │ ├── HealthRisks │ │ │ └── HealthRisk.cs │ │ │ └── TestDataCommandHandler.cs │ ├── Events.Admin │ │ ├── Events.Admin.csproj │ │ └── Reporting │ │ │ ├── DefaultReplyMessages │ │ │ ├── DefaultAutomaticReplyDefined.cs │ │ │ └── DefaultAutomaticReplyKeyMessageDefined.cs │ │ │ ├── HealthRisks │ │ │ ├── HealthRiskCreated.cs │ │ │ ├── HealthRiskDeleted.cs │ │ │ └── HealthRiskModified.cs │ │ │ └── Projects │ │ │ ├── ProjectCreated.cs │ │ │ └── ProjectUpdated.cs │ ├── Events.NotificationGateway │ │ ├── Events.NotificationGateway.csproj │ │ └── Reporting │ │ │ └── SMS │ │ │ └── TextMessageReceived.cs │ ├── Events │ │ ├── Events.csproj │ │ ├── Management │ │ │ ├── DataCollectors │ │ │ │ ├── EditInformation │ │ │ │ │ ├── DataCollectorDataVerifierChanged.cs │ │ │ │ │ ├── DataCollectorLocationChanged.cs │ │ │ │ │ ├── DataCollectorPrefferedLanguageChanged.cs │ │ │ │ │ ├── DataCollectorUserInformationChanged.cs │ │ │ │ │ ├── DataCollectorVillageChanged.cs │ │ │ │ │ ├── LastActiveUpdated.cs │ │ │ │ │ ├── PhoneNumberAddedToDataCollector.cs │ │ │ │ │ └── PhoneNumberRemovedFromDataCollector.cs │ │ │ │ ├── Registration │ │ │ │ │ ├── DataCollectorRegistered.cs │ │ │ │ │ └── DataCollectorRemoved.cs │ │ │ │ └── Training │ │ │ │ │ ├── DataCollectorBeganTraining.cs │ │ │ │ │ └── DataCollectorCompletedTraining.cs │ │ │ └── MessageGenerators │ │ │ │ └── MessageGenerated.cs │ │ └── Reporting │ │ │ ├── AutomaticReplyMessages │ │ │ ├── AutomaticReplyDefined.cs │ │ │ ├── AutomaticReplyKeyMessageDefined.cs │ │ │ ├── AutomaticReplyKeyMessageRemoved.cs │ │ │ └── AutomaticReplyRemoved.cs │ │ │ └── CaseReports │ │ │ ├── CaseReportFromUnknownDataCollectorReceived.cs │ │ │ ├── CaseReportIdentified.cs │ │ │ ├── CaseReportReceived.cs │ │ │ ├── InvalidReportFromUnknownDataCollectorReceived.cs │ │ │ ├── InvalidReportReceived.cs │ │ │ ├── InvalidTrainingReportReceived.cs │ │ │ └── TrainingReportReceived.cs │ ├── Policies.Specs │ │ ├── Policies.Specs.csproj │ │ └── Reporting │ │ │ └── for_notifications │ │ │ ├── given │ │ │ └── text_message_received_events.cs │ │ │ ├── when_parsing_a_correctly_formated_aggregated_case_report_sms │ │ │ ├── given │ │ │ │ └── text_message_received_events_containing_aggregated_case_reports.cs │ │ │ ├── separated_by_hash │ │ │ │ ├── given │ │ │ │ │ └── text_message_received_events_containing_aggregated_case_report.cs │ │ │ │ ├── when_it_is_a_valid_report.cs │ │ │ │ ├── when_report_has_a_negative_health_risk.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_females_over_5.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_females_under_5.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_males_over_5.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_males_under_5.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_females_over_5.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_females_under_5.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_health_risk.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_males_over_5.cs │ │ │ │ └── when_report_has_an_invalid_value_for_males_under_5.cs │ │ │ ├── separated_by_star │ │ │ │ ├── given │ │ │ │ │ └── text_message_received_events_containing_aggregated_case_report.cs │ │ │ │ ├── when_it_is_a_valid_report.cs │ │ │ │ ├── when_report_has_a_negative_health_risk.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_females_over_5.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_females_under_5.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_males_over_5.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_males_under_5.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_females_over_5.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_females_under_5.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_health_risk.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_males_over_5.cs │ │ │ │ └── when_report_has_an_invalid_value_for_males_under_5.cs │ │ │ └── separated_by_star_and_hash │ │ │ │ ├── given │ │ │ │ └── text_message_received_events_containing_aggregated_case_report.cs │ │ │ │ ├── when_it_is_a_valid_report.cs │ │ │ │ ├── when_report_has_a_negative_health_risk.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_females_over_5.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_females_under_5.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_males_over_5.cs │ │ │ │ ├── when_report_has_a_negative_number_of_cases_of_males_under_5.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_females_over_5.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_females_under_5.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_health_risk.cs │ │ │ │ ├── when_report_has_an_invalid_value_for_males_over_5.cs │ │ │ │ └── when_report_has_an_invalid_value_for_males_under_5.cs │ │ │ └── when_parsing_a_correctly_formated_single_case_report_sms │ │ │ ├── given │ │ │ └── a_text_message_received_builder_for_single_case_report.cs │ │ │ ├── separated_by_hash │ │ │ ├── given │ │ │ │ └── a_text_message_received_builder_for_single_case_report.cs │ │ │ ├── when_report_has_a_negative_age_group.cs │ │ │ ├── when_report_has_a_negative_health_risk.cs │ │ │ ├── when_report_has_a_negative_sex.cs │ │ │ ├── when_report_has_an_invalid_value_for_age_group.cs │ │ │ ├── when_report_has_an_invalid_value_for_health_risk.cs │ │ │ ├── when_report_has_an_invalid_value_for_sex.cs │ │ │ ├── when_report_has_an_out_of_range_value_for_age_group.cs │ │ │ ├── when_report_has_an_out_of_range_value_for_sex.cs │ │ │ ├── when_report_is_of_a_man_over_5.cs │ │ │ ├── when_report_is_of_a_man_under_5.cs │ │ │ ├── when_report_is_of_a_woman_over_5.cs │ │ │ └── when_report_is_of_a_woman_under_5.cs │ │ │ ├── separated_by_star │ │ │ ├── given │ │ │ │ └── a_text_message_received_builder_for_single_case_report.cs │ │ │ ├── when_report_has_a_negative_age_group.cs │ │ │ ├── when_report_has_a_negative_health_risk.cs │ │ │ ├── when_report_has_a_negative_sex.cs │ │ │ ├── when_report_has_an_invalid_value_for_age_group.cs │ │ │ ├── when_report_has_an_invalid_value_for_health_risk.cs │ │ │ ├── when_report_has_an_invalid_value_for_sex.cs │ │ │ ├── when_report_has_an_out_of_range_value_for_age_group.cs │ │ │ ├── when_report_has_an_out_of_range_value_for_sex.cs │ │ │ ├── when_report_is_of_a_man_over_5.cs │ │ │ ├── when_report_is_of_a_man_under_5.cs │ │ │ ├── when_report_is_of_a_woman_over_5.cs │ │ │ └── when_report_is_of_a_woman_under_5.cs │ │ │ └── separated_by_star_and_hash │ │ │ ├── given │ │ │ └── a_text_message_received_builder_for_single_case_report.cs │ │ │ ├── when_report_has_a_negative_age_group.cs │ │ │ ├── when_report_has_a_negative_health_risk.cs │ │ │ ├── when_report_has_a_negative_sex.cs │ │ │ ├── when_report_has_an_invalid_value_for_age_group.cs │ │ │ ├── when_report_has_an_invalid_value_for_health_risk.cs │ │ │ ├── when_report_has_an_invalid_value_for_sex.cs │ │ │ ├── when_report_has_an_out_of_range_value_for_age_group.cs │ │ │ ├── when_report_has_an_out_of_range_value_for_sex.cs │ │ │ ├── when_report_is_of_a_man_over_5.cs │ │ │ ├── when_report_is_of_a_man_under_5.cs │ │ │ ├── when_report_is_of_a_woman_over_5.cs │ │ │ └── when_report_is_of_a_woman_under_5.cs │ ├── Policies │ │ ├── Policies.csproj │ │ └── Reporting │ │ │ ├── CaseReportIdentification.cs │ │ │ └── Notifications │ │ │ ├── INotificationParser.cs │ │ │ ├── NotificationFragment.cs │ │ │ ├── NotificationParser.cs │ │ │ ├── NotificationParsingResult.cs │ │ │ └── NotificationProcessor.cs │ ├── Read.Specs │ │ └── Read.Specs.csproj │ ├── Read │ │ ├── Management │ │ │ ├── DataCollectors │ │ │ │ ├── AllDataCollectors.cs │ │ │ │ ├── DataCollector.cs │ │ │ │ ├── DataCollectorById.cs │ │ │ │ └── DataCollectorEventProcessor.cs │ │ │ └── DataVerifiers │ │ │ │ └── DataVerifier.cs │ │ ├── Read.csproj │ │ └── Reporting │ │ │ ├── AutomaticReplyMessages │ │ │ ├── AutomaticReply.cs │ │ │ ├── AutomaticReplyKeyMessage.cs │ │ │ ├── AutomaticReplyProcessor.cs │ │ │ ├── DefaultAutomaticReply.cs │ │ │ ├── DefaultAutomaticReplyKeyMessage.cs │ │ │ └── DefaultAutomaticReplyProcessor.cs │ │ │ ├── CaseReports │ │ │ ├── CaseReport.cs │ │ │ ├── CaseReportEventProcessors.cs │ │ │ └── CaseReportFromUnknownDataCollector.cs │ │ │ ├── CaseReportsForListing │ │ │ ├── AllCaseReportsForListing.cs │ │ │ ├── CaseReportForListing.cs │ │ │ ├── CaseReportForListingById.cs │ │ │ ├── CaseReportForListingEventProcessor.cs │ │ │ ├── CaseReportStatus.cs │ │ │ └── QueryExtensions.cs │ │ │ ├── DataCollectorNames │ │ │ ├── AllListedDataCollector.cs │ │ │ ├── DataCollectorEventProcessor.cs │ │ │ ├── ListedDataCollector.cs │ │ │ └── ListedDataCollectorById.cs │ │ │ ├── HealthRisks │ │ │ ├── AllHealthRisks.cs │ │ │ ├── HealthRisk.cs │ │ │ ├── HealthRiskById.cs │ │ │ └── HealthRiskEventProcessor.cs │ │ │ ├── InvalidCaseReports │ │ │ ├── InvalidCaseReport.cs │ │ │ ├── InvalidCaseReportEventProcessors.cs │ │ │ └── InvalidCaseReportFromUnknownDataCollector.cs │ │ │ ├── Projects │ │ │ ├── Project.cs │ │ │ └── ProjectsEventProcessor.cs │ │ │ └── Training │ │ │ ├── AllTrainingReports.cs │ │ │ ├── EventProcessor.cs │ │ │ └── TrainingReport.cs │ ├── Reporting.code-workspace │ ├── Reporting.sln │ ├── Rules.Specs │ │ └── Rules.Specs.csproj │ ├── Rules │ │ ├── Management │ │ │ └── DataCollectors │ │ │ │ ├── CantExist.cs │ │ │ │ ├── DisplayNameMustBeUnique.cs │ │ │ │ ├── DistrictMustBeReal.cs │ │ │ │ ├── MustBeAllowedToChangeDisplayName.cs │ │ │ │ ├── MustExist.cs │ │ │ │ ├── PhoneNumberShouldBeRegistered.cs │ │ │ │ ├── PhoneNumberShouldNotBeRegistered.cs │ │ │ │ ├── RegionMustBeReal.cs │ │ │ │ └── VillageMustBeReal.cs │ │ └── Rules.csproj │ ├── Web │ │ ├── Dockerfile │ │ ├── angular.json │ │ ├── browserslist │ │ ├── hooks │ │ │ └── pre_push │ │ ├── nginx-default.conf │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Management │ │ │ │ │ ├── DataCollectors │ │ │ │ │ │ ├── AddPhoneNumberToDataCollector.js │ │ │ │ │ │ ├── AllDataCollectors.js │ │ │ │ │ │ ├── ChangeBaseInformation.js │ │ │ │ │ │ ├── ChangeDataVerifier.js │ │ │ │ │ │ ├── ChangeLocation.js │ │ │ │ │ │ ├── ChangePreferredLanguage.js │ │ │ │ │ │ ├── ChangeVillage.js │ │ │ │ │ │ ├── DataCollector.js │ │ │ │ │ │ ├── DataCollectorById.js │ │ │ │ │ │ ├── DataCollectorExportService.ts │ │ │ │ │ │ ├── DataCollectors.module.ts │ │ │ │ │ │ ├── DataCollectors.routes.ts │ │ │ │ │ │ ├── DeleteDataCollector.js │ │ │ │ │ │ ├── EditInformation │ │ │ │ │ │ │ ├── AddPhoneNumberToDataCollector.js │ │ │ │ │ │ │ ├── ChangeBaseInformation.js │ │ │ │ │ │ │ ├── ChangeDataVerifier.js │ │ │ │ │ │ │ ├── ChangeLocation.js │ │ │ │ │ │ │ ├── ChangePreferredLanguage.js │ │ │ │ │ │ │ ├── ChangeVillage.js │ │ │ │ │ │ │ └── RemovePhoneNumberFromDataCollector.js │ │ │ │ │ │ ├── RegisterDataCollector.js │ │ │ │ │ │ ├── Registration │ │ │ │ │ │ │ ├── DeleteDataCollector.js │ │ │ │ │ │ │ └── RegisterDataCollector.js │ │ │ │ │ │ ├── RemovePhoneNumberFromDataCollector.js │ │ │ │ │ │ ├── Training │ │ │ │ │ │ │ ├── BeginTraining.js │ │ │ │ │ │ │ └── EndTraining.js │ │ │ │ │ │ ├── delete │ │ │ │ │ │ │ ├── delete.html │ │ │ │ │ │ │ └── delete.ts │ │ │ │ │ │ ├── details │ │ │ │ │ │ │ ├── details.html │ │ │ │ │ │ │ ├── details.scss │ │ │ │ │ │ │ └── details.ts │ │ │ │ │ │ ├── edit │ │ │ │ │ │ │ ├── edit.html │ │ │ │ │ │ │ ├── edit.scss │ │ │ │ │ │ │ └── edit.ts │ │ │ │ │ │ ├── export │ │ │ │ │ │ │ ├── export.html │ │ │ │ │ │ │ ├── export.scss │ │ │ │ │ │ │ └── export.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── list.html │ │ │ │ │ │ │ ├── list.scss │ │ │ │ │ │ │ └── list.ts │ │ │ │ │ │ └── register │ │ │ │ │ │ │ ├── register.html │ │ │ │ │ │ │ ├── register.scss │ │ │ │ │ │ │ └── register.ts │ │ │ │ │ ├── DataVerifiers │ │ │ │ │ │ └── DataVerifier.js │ │ │ │ │ ├── Language.ts │ │ │ │ │ ├── Location.ts │ │ │ │ │ ├── Sex.ts │ │ │ │ │ └── Tests │ │ │ │ │ │ └── CreateDataCollectorTestData.js │ │ │ │ ├── Reporting │ │ │ │ │ ├── AutomaticReplyMessages │ │ │ │ │ │ ├── AutomaticReply.js │ │ │ │ │ │ ├── AutomaticReplyKeyMessage.js │ │ │ │ │ │ ├── DefaultAutomaticReply.js │ │ │ │ │ │ ├── DefaultAutomaticReplyKeyMessage.js │ │ │ │ │ │ ├── DefineAutomaticReplyForProject.js │ │ │ │ │ │ └── DefineAutomaticReplyKeyMessageForProject.js │ │ │ │ │ ├── CaseReports │ │ │ │ │ │ ├── AllTrainingReports.js │ │ │ │ │ │ ├── CaseReport.js │ │ │ │ │ │ ├── CaseReportFromUnknownDataCollector.js │ │ │ │ │ │ ├── TestData │ │ │ │ │ │ │ └── PopulateCaseReportTestData.js │ │ │ │ │ │ └── TrainingReport.js │ │ │ │ │ ├── CaseReportsForListing │ │ │ │ │ │ ├── AllCaseReportsForListing.js │ │ │ │ │ │ ├── CaseReportForListing.js │ │ │ │ │ │ ├── CaseReportForListingById.js │ │ │ │ │ │ ├── case-report-list.component.html │ │ │ │ │ │ ├── case-report-list.component.scss │ │ │ │ │ │ ├── case-report-list.component.ts │ │ │ │ │ │ ├── export │ │ │ │ │ │ │ ├── case-report-export.component.html │ │ │ │ │ │ │ ├── case-report-export.component.scss │ │ │ │ │ │ │ └── case-report-export.component.ts │ │ │ │ │ │ ├── filtering │ │ │ │ │ │ │ └── filter.pipe.ts │ │ │ │ │ │ ├── sort │ │ │ │ │ │ │ ├── columns.ts │ │ │ │ │ │ │ ├── sortable-column.component.html │ │ │ │ │ │ │ └── sortable-column.component.ts │ │ │ │ │ │ ├── training-report-list.component.html │ │ │ │ │ │ └── training-report-list.component.ts │ │ │ │ │ ├── DataCollectors │ │ │ │ │ │ ├── AllListedDataCollectors.js │ │ │ │ │ │ ├── ListedDataCollector.js │ │ │ │ │ │ └── ListedDataCollectorById.js │ │ │ │ │ ├── HealthRisks │ │ │ │ │ │ ├── AllHealthRisks.js │ │ │ │ │ │ ├── HealthRisk.js │ │ │ │ │ │ ├── HealthRiskById.js │ │ │ │ │ │ └── TestData │ │ │ │ │ │ │ └── PopulateHealthRiskTestData.js │ │ │ │ │ ├── InvalidCaseReports │ │ │ │ │ │ ├── InvalidCaseReport.js │ │ │ │ │ │ └── InvalidCaseReportFromUnknownDataCollector.js │ │ │ │ │ ├── Projects │ │ │ │ │ │ └── Project.js │ │ │ │ │ ├── reporting-routing.module.ts │ │ │ │ │ └── reporting.module.ts │ │ │ │ ├── TestData │ │ │ │ │ └── CaseReports │ │ │ │ │ │ └── PopulateCaseReportTestData.js │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navigation │ │ │ │ │ ├── navbar-host.component.html │ │ │ │ │ └── navbar-host.component.ts │ │ │ │ ├── services │ │ │ │ │ └── app-insights-service.ts │ │ │ │ └── shared │ │ │ │ │ └── shared.module.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── bootstrap │ │ │ │ │ ├── _theme.scss │ │ │ │ │ └── _variables.scss │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ ├── environment.test.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.scss │ │ │ ├── tsconfig.app.json │ │ │ └── typings.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── bounded-context.json │ └── readme.md └── application.json ├── VERSION └── _config.yml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Build/MSBuild/default.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/MSBuild/default.props -------------------------------------------------------------------------------- /Build/MSBuild/specs.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/MSBuild/specs.props -------------------------------------------------------------------------------- /Build/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/appveyor.yml -------------------------------------------------------------------------------- /Build/build.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/build.cake -------------------------------------------------------------------------------- /Build/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/build.ps1 -------------------------------------------------------------------------------- /Build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/build.sh -------------------------------------------------------------------------------- /Build/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/clean.sh -------------------------------------------------------------------------------- /Build/docker_cloud/new_build_num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/docker_cloud/new_build_num -------------------------------------------------------------------------------- /Build/docker_cloud/pre_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/docker_cloud/pre_push -------------------------------------------------------------------------------- /Build/kill_all_dot_net.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/kill_all_dot_net.sh -------------------------------------------------------------------------------- /Build/tools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/tools/packages.config -------------------------------------------------------------------------------- /Build/travis_cake_image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Build/travis_cake_image/Dockerfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Release Notes 2 | 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Codeathons/20170929 Oslo/TechnicalIntro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Codeathons/20170929 Oslo/TechnicalIntro.pptx -------------------------------------------------------------------------------- /Deploy/Compose/config/admin-event-horizons.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /Deploy/Compose/config/admin-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Compose/config/admin-resources.json -------------------------------------------------------------------------------- /Deploy/Compose/config/alerts-event-horizons.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /Deploy/Compose/config/alerts-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Compose/config/alerts-resources.json -------------------------------------------------------------------------------- /Deploy/Compose/config/analytics-event-horizons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Compose/config/analytics-event-horizons.json -------------------------------------------------------------------------------- /Deploy/Compose/config/analytics-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Compose/config/analytics-resources.json -------------------------------------------------------------------------------- /Deploy/Compose/config/apikeyToTenant.json: -------------------------------------------------------------------------------- 1 | {"ThereWillBeAnApiKeyHere":"445f8ea8-1a6f-40d7-b2fc-796dba92dc44"} -------------------------------------------------------------------------------- /Deploy/Compose/config/nginx-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Compose/config/nginx-default.conf -------------------------------------------------------------------------------- /Deploy/Compose/config/notificationgateway-event-horizons.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /Deploy/Compose/config/notificationgateway-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Compose/config/notificationgateway-resources.json -------------------------------------------------------------------------------- /Deploy/Compose/config/reporting-event-horizons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Compose/config/reporting-event-horizons.json -------------------------------------------------------------------------------- /Deploy/Compose/config/reporting-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Compose/config/reporting-resources.json -------------------------------------------------------------------------------- /Deploy/Compose/config/tenant-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Compose/config/tenant-map.json -------------------------------------------------------------------------------- /Deploy/Compose/config/tenants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Compose/config/tenants.json -------------------------------------------------------------------------------- /Deploy/Compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Compose/docker-compose.yml -------------------------------------------------------------------------------- /Deploy/K8S/BoundedContexts/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/K8S/BoundedContexts/ingress.yaml -------------------------------------------------------------------------------- /Deploy/K8S/BoundedContexts/pods-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/K8S/BoundedContexts/pods-admin.yaml -------------------------------------------------------------------------------- /Deploy/K8S/BoundedContexts/pods-notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/K8S/BoundedContexts/pods-notification.yaml -------------------------------------------------------------------------------- /Deploy/K8S/BoundedContexts/pods-reporting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/K8S/BoundedContexts/pods-reporting.yaml -------------------------------------------------------------------------------- /Deploy/K8S/BoundedContexts/pods-usermanagement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/K8S/BoundedContexts/pods-usermanagement.yaml -------------------------------------------------------------------------------- /Deploy/K8S/BoundedContexts/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/K8S/BoundedContexts/services.yaml -------------------------------------------------------------------------------- /Deploy/K8S/BoundedContexts/tenants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/K8S/BoundedContexts/tenants.yaml -------------------------------------------------------------------------------- /Deploy/K8S/Infrastructure/database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/K8S/Infrastructure/database.yaml -------------------------------------------------------------------------------- /Deploy/K8S/Infrastructure/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/K8S/Infrastructure/ingress.yaml -------------------------------------------------------------------------------- /Deploy/K8S/Infrastructure/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/K8S/Infrastructure/swagger.yaml -------------------------------------------------------------------------------- /Deploy/K8S/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/K8S/namespaces.yaml -------------------------------------------------------------------------------- /Deploy/Local/ReverseProxy/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Local/ReverseProxy/main.js -------------------------------------------------------------------------------- /Deploy/Local/ReverseProxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Deploy/Local/ReverseProxy/package.json -------------------------------------------------------------------------------- /Documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/.gitignore -------------------------------------------------------------------------------- /Documentation/Architecture/Diagrams.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/Diagrams.pptx -------------------------------------------------------------------------------- /Documentation/Architecture/apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/apis.md -------------------------------------------------------------------------------- /Documentation/Architecture/at_a_glance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/at_a_glance.md -------------------------------------------------------------------------------- /Documentation/Architecture/bounded_contexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/bounded_contexts.md -------------------------------------------------------------------------------- /Documentation/Architecture/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/commands.md -------------------------------------------------------------------------------- /Documentation/Architecture/containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/containers.md -------------------------------------------------------------------------------- /Documentation/Architecture/ddd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/ddd.md -------------------------------------------------------------------------------- /Documentation/Architecture/dry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/dry.md -------------------------------------------------------------------------------- /Documentation/Architecture/event_store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/event_store.md -------------------------------------------------------------------------------- /Documentation/Architecture/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/events.md -------------------------------------------------------------------------------- /Documentation/Architecture/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/frontend.md -------------------------------------------------------------------------------- /Documentation/Architecture/fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/fundamentals.md -------------------------------------------------------------------------------- /Documentation/Architecture/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/glossary.md -------------------------------------------------------------------------------- /Documentation/Architecture/high_cohesion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/high_cohesion.md -------------------------------------------------------------------------------- /Documentation/Architecture/identity_and_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/identity_and_access.md -------------------------------------------------------------------------------- /Documentation/Architecture/images/at_a_glance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/images/at_a_glance.png -------------------------------------------------------------------------------- /Documentation/Architecture/images/cqrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/images/cqrs.png -------------------------------------------------------------------------------- /Documentation/Architecture/images/offline_syncing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/images/offline_syncing.png -------------------------------------------------------------------------------- /Documentation/Architecture/images/top_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/images/top_level.png -------------------------------------------------------------------------------- /Documentation/Architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/index.md -------------------------------------------------------------------------------- /Documentation/Architecture/inversion_of_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/inversion_of_control.md -------------------------------------------------------------------------------- /Documentation/Architecture/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/logging.md -------------------------------------------------------------------------------- /Documentation/Architecture/offline_sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/offline_sync.md -------------------------------------------------------------------------------- /Documentation/Architecture/persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/persistence.md -------------------------------------------------------------------------------- /Documentation/Architecture/principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/principles.md -------------------------------------------------------------------------------- /Documentation/Architecture/sms_gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Architecture/sms_gateway.md -------------------------------------------------------------------------------- /Documentation/Continuous Integration/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Continuous Integration/overview.md -------------------------------------------------------------------------------- /Documentation/Contribution/copyright_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Contribution/copyright_header.md -------------------------------------------------------------------------------- /Documentation/Contribution/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Contribution/documentation.md -------------------------------------------------------------------------------- /Documentation/Contribution/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Contribution/editor.md -------------------------------------------------------------------------------- /Documentation/Contribution/images/issues_add_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Contribution/images/issues_add_note.png -------------------------------------------------------------------------------- /Documentation/Contribution/images/issues_backlog_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Contribution/images/issues_backlog_new.png -------------------------------------------------------------------------------- /Documentation/Contribution/images/issues_converted_issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Contribution/images/issues_converted_issue.png -------------------------------------------------------------------------------- /Documentation/Contribution/images/issues_issue_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Contribution/images/issues_issue_details.png -------------------------------------------------------------------------------- /Documentation/Contribution/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Contribution/issues.md -------------------------------------------------------------------------------- /Documentation/Contribution/product_owners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Contribution/product_owners.md -------------------------------------------------------------------------------- /Documentation/Contribution/runtime_exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Contribution/runtime_exceptions.md -------------------------------------------------------------------------------- /Documentation/Contribution/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Contribution/toc.yml -------------------------------------------------------------------------------- /Documentation/Deployment/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Deployment/build.md -------------------------------------------------------------------------------- /Documentation/Deployment/container_registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Deployment/container_registry.md -------------------------------------------------------------------------------- /Documentation/Deployment/helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Deployment/helm.md -------------------------------------------------------------------------------- /Documentation/Deployment/release_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Deployment/release_management.md -------------------------------------------------------------------------------- /Documentation/Deployment/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Deployment/versioning.md -------------------------------------------------------------------------------- /Documentation/Projects/Admin/Commands/CreateHealthRisk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/Commands/CreateHealthRisk.md -------------------------------------------------------------------------------- /Documentation/Projects/Admin/Commands/CreateProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/Commands/CreateProject.md -------------------------------------------------------------------------------- /Documentation/Projects/Admin/Events/HealthRiskCreated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/Events/HealthRiskCreated.md -------------------------------------------------------------------------------- /Documentation/Projects/Admin/Events/HealthRiskUpdated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/Events/HealthRiskUpdated.md -------------------------------------------------------------------------------- /Documentation/Projects/Admin/Events/ProjectAreasChanged.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/Events/ProjectAreasChanged.md -------------------------------------------------------------------------------- /Documentation/Projects/Admin/Events/ProjectCreated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/Events/ProjectCreated.md -------------------------------------------------------------------------------- /Documentation/Projects/Admin/Processes/DefiningHealthRisks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/Processes/DefiningHealthRisks.md -------------------------------------------------------------------------------- /Documentation/Projects/Admin/Processes/DefiningProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/Processes/DefiningProject.md -------------------------------------------------------------------------------- /Documentation/Projects/Admin/ReadModels/HealthRisk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/ReadModels/HealthRisk.md -------------------------------------------------------------------------------- /Documentation/Projects/Admin/ReadModels/Project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/ReadModels/Project.md -------------------------------------------------------------------------------- /Documentation/Projects/Admin/assets/physical-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/assets/physical-view.png -------------------------------------------------------------------------------- /Documentation/Projects/Admin/assets/reporting-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/assets/reporting-feedback.png -------------------------------------------------------------------------------- /Documentation/Projects/Admin/assets/scenarios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/assets/scenarios.png -------------------------------------------------------------------------------- /Documentation/Projects/Admin/assets/system-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/assets/system-context.png -------------------------------------------------------------------------------- /Documentation/Projects/Admin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Admin/index.md -------------------------------------------------------------------------------- /Documentation/Projects/Alerts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Alerts/index.md -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/.editorconfig -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/.gitattributes -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/.gitignore -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/404.html -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/browserconfig.xml -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/Ageandsexdistributionoverdifferenttimeframes.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/Barchartsbydistrict.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/DistrictPersonreportingfunnelplotA.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/DistrictPersonreportingfunnelplotB.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/Epicurvebyday.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/Epicurvebydaydodgedbyage.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/Epicurvebyweek.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/Epicurvebyweekdodgedbyage.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/Mapbygeographicalarea.css: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/Weeklyepicurvesbyagesex.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/Weeklyepicurvesbygeographicalarea.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/css/font-face.css -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: gray; 3 | } 4 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/css/normalize.css -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/css/theme.css -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/favicon.ico -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/humans.txt -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/icon.png -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/index.html -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/js/Barchartsbydistrict.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/js/DistrictPersonreportingfunnelplotA.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/js/DistrictPersonreportingfunnelplotB.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/js/Epicurvebydaydodgedbyage.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/js/Weeklyepicurvesbygeographicalarea.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/js/commonData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/js/commonData.js -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/js/custom.js -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/js/fakedata/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user/ -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/js/main.js -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/js/plugins.js -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/mapdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/mapdata.csv -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/mapdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/mapdata.json -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/page1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/page1.html -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/page1/age.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/page1/age.js -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/page1/reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/page1/reports.js -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/page2.html -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/page4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/page4.html -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/robots.txt -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/site.webmanifest -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/test.html -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/tile-wide.png -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/Web Mockup/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/Web Mockup/tile.png -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/archive.md -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/archive/fakedata/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user/ -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/archive/fakedata/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/archive/fakedata/report.md -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/graphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/graphs.md -------------------------------------------------------------------------------- /Documentation/Projects/Analytics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Analytics/index.md -------------------------------------------------------------------------------- /Documentation/Projects/Core/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Core/events.md -------------------------------------------------------------------------------- /Documentation/Projects/Core/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Core/index.md -------------------------------------------------------------------------------- /Documentation/Projects/Portal/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Portal/index.md -------------------------------------------------------------------------------- /Documentation/Projects/Reporting/2017-09-29 14-31 page 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Reporting/2017-09-29 14-31 page 1.jpg -------------------------------------------------------------------------------- /Documentation/Projects/Reporting/Detailed_Alert_Map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Reporting/Detailed_Alert_Map.jpg -------------------------------------------------------------------------------- /Documentation/Projects/Reporting/Detailed_Alert_Timeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Reporting/Detailed_Alert_Timeline.jpg -------------------------------------------------------------------------------- /Documentation/Projects/Reporting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Reporting/index.md -------------------------------------------------------------------------------- /Documentation/Projects/Sms/Architecture_Duplex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Sms/Architecture_Duplex.png -------------------------------------------------------------------------------- /Documentation/Projects/Sms/Architecture_Incoming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Sms/Architecture_Incoming.png -------------------------------------------------------------------------------- /Documentation/Projects/Sms/Flow_Duplex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Sms/Flow_Duplex.png -------------------------------------------------------------------------------- /Documentation/Projects/Sms/Flow_Incoming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Sms/Flow_Incoming.png -------------------------------------------------------------------------------- /Documentation/Projects/Sms/Postman_Eagle_Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Sms/Postman_Eagle_Sample.png -------------------------------------------------------------------------------- /Documentation/Projects/Sms/Postman_Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Sms/Postman_Sample.png -------------------------------------------------------------------------------- /Documentation/Projects/Sms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Sms/index.md -------------------------------------------------------------------------------- /Documentation/Projects/User Management/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/User Management/index.md -------------------------------------------------------------------------------- /Documentation/Projects/Volunteer Reporting/data_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Volunteer Reporting/data_flow.png -------------------------------------------------------------------------------- /Documentation/Projects/Volunteer Reporting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/Volunteer Reporting/index.md -------------------------------------------------------------------------------- /Documentation/Projects/actors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/actors.md -------------------------------------------------------------------------------- /Documentation/Projects/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Projects/index.md -------------------------------------------------------------------------------- /Documentation/Requirements/March 2017 - CBS v2 Diagrams.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/Requirements/March 2017 - CBS v2 Diagrams.pdf -------------------------------------------------------------------------------- /Documentation/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/docfx.json -------------------------------------------------------------------------------- /Documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/index.md -------------------------------------------------------------------------------- /Documentation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/readme.md -------------------------------------------------------------------------------- /Documentation/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Documentation/toc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/LICENSE -------------------------------------------------------------------------------- /Logs/FieldTest_April2018/VolunteerReporting/logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Logs/FieldTest_April2018/VolunteerReporting/logs.txt -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2161.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2161.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2162.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2162.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2163.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2163.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2164.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2164.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2165.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2165.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2166.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2166.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2167.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2167.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2168.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2168.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2169.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2169.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2170.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2170.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2171.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2171.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2172.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2172.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2173.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2173.JPG -------------------------------------------------------------------------------- /Meetings/20170911 - Core Team - Planning/IMG_2174.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170911 - Core Team - Planning/IMG_2174.JPG -------------------------------------------------------------------------------- /Meetings/20170918 - Core Team sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20170918 - Core Team sync.md -------------------------------------------------------------------------------- /Meetings/20171010 - Core Team sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20171010 - Core Team sync.md -------------------------------------------------------------------------------- /Meetings/20171025 - Community standup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20171025 - Community standup.md -------------------------------------------------------------------------------- /Meetings/20171118 - Community standup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20171118 - Community standup.md -------------------------------------------------------------------------------- /Meetings/20180815 - Core Team sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20180815 - Core Team sync.md -------------------------------------------------------------------------------- /Meetings/20180912 - Core Team Sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20180912 - Core Team Sync -------------------------------------------------------------------------------- /Meetings/20180919 - Core Team sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20180919 - Core Team sync.md -------------------------------------------------------------------------------- /Meetings/20181003 - Core Team sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20181003 - Core Team sync.md -------------------------------------------------------------------------------- /Meetings/20181017 - Core Team sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20181017 - Core Team sync.md -------------------------------------------------------------------------------- /Meetings/20181031 - Core Team sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20181031 - Core Team sync.md -------------------------------------------------------------------------------- /Meetings/20181129 - Core Team sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20181129 - Core Team sync.md -------------------------------------------------------------------------------- /Meetings/20190115 - Core Team sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Meetings/20190115 - Core Team sync.md -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/README.md -------------------------------------------------------------------------------- /Source/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/.dockerignore -------------------------------------------------------------------------------- /Source/Admin/Admin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Admin.sln -------------------------------------------------------------------------------- /Source/Admin/Concepts/Concepts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/Concepts.csproj -------------------------------------------------------------------------------- /Source/Admin/Concepts/HealthRisks/CaseDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/HealthRisks/CaseDefinition.cs -------------------------------------------------------------------------------- /Source/Admin/Concepts/HealthRisks/HealthRiskId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/HealthRisks/HealthRiskId.cs -------------------------------------------------------------------------------- /Source/Admin/Concepts/HealthRisks/HealthRiskName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/HealthRisks/HealthRiskName.cs -------------------------------------------------------------------------------- /Source/Admin/Concepts/HealthRisks/HealthRiskNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/HealthRisks/HealthRiskNumber.cs -------------------------------------------------------------------------------- /Source/Admin/Concepts/HealthRisks/KeyMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/HealthRisks/KeyMessage.cs -------------------------------------------------------------------------------- /Source/Admin/Concepts/HealthRisks/KeyMessageId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/HealthRisks/KeyMessageId.cs -------------------------------------------------------------------------------- /Source/Admin/Concepts/HealthRisks/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/HealthRisks/Language.cs -------------------------------------------------------------------------------- /Source/Admin/Concepts/NationalSocieties/NationalSocietyId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/NationalSocieties/NationalSocietyId.cs -------------------------------------------------------------------------------- /Source/Admin/Concepts/Projects/ProjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/Projects/ProjectId.cs -------------------------------------------------------------------------------- /Source/Admin/Concepts/Projects/ProjectName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/Projects/ProjectName.cs -------------------------------------------------------------------------------- /Source/Admin/Concepts/Projects/ProjectSurveillanceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/Projects/ProjectSurveillanceContext.cs -------------------------------------------------------------------------------- /Source/Admin/Concepts/Users/UserId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Concepts/Users/UserId.cs -------------------------------------------------------------------------------- /Source/Admin/Core/.dolittle/artifacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/.dolittle/artifacts.json -------------------------------------------------------------------------------- /Source/Admin/Core/.dolittle/event-horizons.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /Source/Admin/Core/.dolittle/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/.dolittle/resources.json -------------------------------------------------------------------------------- /Source/Admin/Core/.dolittle/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/.dolittle/server.json -------------------------------------------------------------------------------- /Source/Admin/Core/.dolittle/tenant-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/.dolittle/tenant-map.json -------------------------------------------------------------------------------- /Source/Admin/Core/.dolittle/tenants.json: -------------------------------------------------------------------------------- 1 | { 2 | "445f8ea8-1a6f-40d7-b2fc-796dba92dc44": {} 3 | } -------------------------------------------------------------------------------- /Source/Admin/Core/.dolittle/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/.dolittle/topology.json -------------------------------------------------------------------------------- /Source/Admin/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/Core.csproj -------------------------------------------------------------------------------- /Source/Admin/Core/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/Dockerfile -------------------------------------------------------------------------------- /Source/Admin/Core/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/LoggingExtensions.cs -------------------------------------------------------------------------------- /Source/Admin/Core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/Program.cs -------------------------------------------------------------------------------- /Source/Admin/Core/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/Properties/launchSettings.json -------------------------------------------------------------------------------- /Source/Admin/Core/SecurityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/SecurityExtensions.cs -------------------------------------------------------------------------------- /Source/Admin/Core/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/Startup.cs -------------------------------------------------------------------------------- /Source/Admin/Core/hooks/pre_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Core/hooks/pre_push -------------------------------------------------------------------------------- /Source/Admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Dockerfile -------------------------------------------------------------------------------- /Source/Admin/Domain/Admin/AddDataVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Admin/AddDataVerifier.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Admin/AddDataVerifierInputValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Admin/AddDataVerifierInputValidator.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Admin/Rules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Admin/Rules.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/AutomaticReplyMessages/Rules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/AutomaticReplyMessages/Rules.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Domain.csproj -------------------------------------------------------------------------------- /Source/Admin/Domain/HealthRisks/AddKeyMessageToHealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/HealthRisks/AddKeyMessageToHealthRisk.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/HealthRisks/AddProjectHealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/HealthRisks/AddProjectHealthRisk.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/HealthRisks/CreateHealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/HealthRisks/CreateHealthRisk.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/HealthRisks/DeleteHealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/HealthRisks/DeleteHealthRisk.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/HealthRisks/HealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/HealthRisks/HealthRisk.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/HealthRisks/ModifyHealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/HealthRisks/ModifyHealthRisk.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/HealthRisks/OverrideCaseDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/HealthRisks/OverrideCaseDefinition.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/HealthRisks/OverrideHealthRiskName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/HealthRisks/OverrideHealthRiskName.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/HealthRisks/Rules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/HealthRisks/Rules.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/HealthRisks/SetCaseDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/HealthRisks/SetCaseDefinition.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/HealthRisks/SetHealthRiskName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/HealthRisks/SetHealthRiskName.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/NationalSocieties/NationalSociety.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/NationalSocieties/NationalSociety.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Projects/CreateProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Projects/CreateProject.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Projects/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Projects/Project.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Projects/ProjectCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Projects/ProjectCommandHandler.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Projects/Rules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Projects/Rules.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Projects/UpdateProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Projects/UpdateProject.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Projects/UpdateProjectValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Projects/UpdateProjectValidator.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Tests/CreateHealthRiskTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Tests/CreateHealthRiskTestData.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Tests/CreateNationalSocietyTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Tests/CreateNationalSocietyTestData.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Tests/CreateProjectTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Tests/CreateProjectTestData.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Tests/CreateUserTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Tests/CreateUserTestData.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Tests/Data/HealthRisks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Tests/Data/HealthRisks.json -------------------------------------------------------------------------------- /Source/Admin/Domain/Tests/Data/NationalSocieties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Tests/Data/NationalSocieties.json -------------------------------------------------------------------------------- /Source/Admin/Domain/Tests/Data/Projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Tests/Data/Projects.json -------------------------------------------------------------------------------- /Source/Admin/Domain/Tests/Data/Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Tests/Data/Users.json -------------------------------------------------------------------------------- /Source/Admin/Domain/Tests/TestDataCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Tests/TestDataCommandHandler.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Users/CreateUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Users/CreateUser.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Users/CreateUserBusinessValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Users/CreateUserBusinessValidator.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Users/CreateUserInputValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Users/CreateUserInputValidator.cs -------------------------------------------------------------------------------- /Source/Admin/Domain/Users/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Domain/Users/User.cs -------------------------------------------------------------------------------- /Source/Admin/Events/Admin/DataVerifierAdded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/Admin/DataVerifierAdded.cs -------------------------------------------------------------------------------- /Source/Admin/Events/Admin/DataVerifierRemoved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/Admin/DataVerifierRemoved.cs -------------------------------------------------------------------------------- /Source/Admin/Events/Events.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/Events.csproj -------------------------------------------------------------------------------- /Source/Admin/Events/HealthRisks/HealthRiskCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/HealthRisks/HealthRiskCreated.cs -------------------------------------------------------------------------------- /Source/Admin/Events/HealthRisks/HealthRiskDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/HealthRisks/HealthRiskDeleted.cs -------------------------------------------------------------------------------- /Source/Admin/Events/HealthRisks/HealthRiskModified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/HealthRisks/HealthRiskModified.cs -------------------------------------------------------------------------------- /Source/Admin/Events/HealthRisks/HealthRiskNameSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/HealthRisks/HealthRiskNameSet.cs -------------------------------------------------------------------------------- /Source/Admin/Events/Projects/ProjectCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/Projects/ProjectCreated.cs -------------------------------------------------------------------------------- /Source/Admin/Events/Projects/ProjectDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/Projects/ProjectDeleted.cs -------------------------------------------------------------------------------- /Source/Admin/Events/Projects/ProjectHealthRiskAdded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/Projects/ProjectHealthRiskAdded.cs -------------------------------------------------------------------------------- /Source/Admin/Events/Projects/ProjectHealthRiskRemoved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/Projects/ProjectHealthRiskRemoved.cs -------------------------------------------------------------------------------- /Source/Admin/Events/Projects/ProjectUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/Projects/ProjectUpdated.cs -------------------------------------------------------------------------------- /Source/Admin/Events/Users/UserCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Events/Users/UserCreated.cs -------------------------------------------------------------------------------- /Source/Admin/HealthRisks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/HealthRisks.txt -------------------------------------------------------------------------------- /Source/Admin/NationalSociety.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/NationalSociety.txt -------------------------------------------------------------------------------- /Source/Admin/Read/HealthRisks/AllHealthRisks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/HealthRisks/AllHealthRisks.cs -------------------------------------------------------------------------------- /Source/Admin/Read/HealthRisks/HealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/HealthRisks/HealthRisk.cs -------------------------------------------------------------------------------- /Source/Admin/Read/HealthRisks/HealthRiskById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/HealthRisks/HealthRiskById.cs -------------------------------------------------------------------------------- /Source/Admin/Read/HealthRisks/HealthRiskEventProcessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/HealthRisks/HealthRiskEventProcessors.cs -------------------------------------------------------------------------------- /Source/Admin/Read/HealthRisks/KeyMessageEventProcessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/HealthRisks/KeyMessageEventProcessors.cs -------------------------------------------------------------------------------- /Source/Admin/Read/NationalSocieties/NationalSociety.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/NationalSocieties/NationalSociety.cs -------------------------------------------------------------------------------- /Source/Admin/Read/NationalSocieties/NationalSocietyById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/NationalSocieties/NationalSocietyById.cs -------------------------------------------------------------------------------- /Source/Admin/Read/Projects/AllProjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/Projects/AllProjects.cs -------------------------------------------------------------------------------- /Source/Admin/Read/Projects/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/Projects/Project.cs -------------------------------------------------------------------------------- /Source/Admin/Read/Projects/ProjectById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/Projects/ProjectById.cs -------------------------------------------------------------------------------- /Source/Admin/Read/Projects/ProjectEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/Projects/ProjectEventProcessor.cs -------------------------------------------------------------------------------- /Source/Admin/Read/Projects/ProjectHealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/Projects/ProjectHealthRisk.cs -------------------------------------------------------------------------------- /Source/Admin/Read/Projects/ProjectHealthRiskVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/Projects/ProjectHealthRiskVersion.cs -------------------------------------------------------------------------------- /Source/Admin/Read/Read.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/Read.csproj -------------------------------------------------------------------------------- /Source/Admin/Read/Users/AllUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/Users/AllUsers.cs -------------------------------------------------------------------------------- /Source/Admin/Read/Users/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/Users/User.cs -------------------------------------------------------------------------------- /Source/Admin/Read/Users/UserById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/Users/UserById.cs -------------------------------------------------------------------------------- /Source/Admin/Read/Users/UserEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Read/Users/UserEventProcessor.cs -------------------------------------------------------------------------------- /Source/Admin/Rules/Admin/IsUserExisting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Rules/Admin/IsUserExisting.cs -------------------------------------------------------------------------------- /Source/Admin/Rules/AutomaticReplyMessages/IsTagValid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Rules/AutomaticReplyMessages/IsTagValid.cs -------------------------------------------------------------------------------- /Source/Admin/Rules/AutomaticReplyMessages/IsTagsValid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Rules/AutomaticReplyMessages/IsTagsValid.cs -------------------------------------------------------------------------------- /Source/Admin/Rules/HealthRisks/IsHealthRiskExisting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Rules/HealthRisks/IsHealthRiskExisting.cs -------------------------------------------------------------------------------- /Source/Admin/Rules/Projects/IsProjectNameUnique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Rules/Projects/IsProjectNameUnique.cs -------------------------------------------------------------------------------- /Source/Admin/Rules/Projects/IsUserNotVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Rules/Projects/IsUserNotVerifier.cs -------------------------------------------------------------------------------- /Source/Admin/Rules/Rules.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Rules/Rules.csproj -------------------------------------------------------------------------------- /Source/Admin/Web/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/.vscode/launch.json -------------------------------------------------------------------------------- /Source/Admin/Web/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/.vscode/settings.json -------------------------------------------------------------------------------- /Source/Admin/Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/Dockerfile -------------------------------------------------------------------------------- /Source/Admin/Web/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/angular.json -------------------------------------------------------------------------------- /Source/Admin/Web/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/browserslist -------------------------------------------------------------------------------- /Source/Admin/Web/hooks/pre_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/hooks/pre_push -------------------------------------------------------------------------------- /Source/Admin/Web/nginx-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/nginx-default.conf -------------------------------------------------------------------------------- /Source/Admin/Web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/package-lock.json -------------------------------------------------------------------------------- /Source/Admin/Web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/package.json -------------------------------------------------------------------------------- /Source/Admin/Web/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/readme.md -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Admin/AddDataVerifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Admin/AddDataVerifier.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/HealthRisks/AllHealthRisks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/HealthRisks/AllHealthRisks.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/HealthRisks/CreateHealthRisk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/HealthRisks/CreateHealthRisk.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/HealthRisks/DeleteHealthRisk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/HealthRisks/DeleteHealthRisk.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/HealthRisks/HealthRisk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/HealthRisks/HealthRisk.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/HealthRisks/HealthRiskById.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/HealthRisks/HealthRiskById.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/HealthRisks/ModifyHealthRisk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/HealthRisks/ModifyHealthRisk.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/HealthRisks/SetCaseDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/HealthRisks/SetCaseDefinition.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/HealthRisks/SetHealthRiskName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/HealthRisks/SetHealthRiskName.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/HealthRisks/add-edit-healthRisk/add-edit-healthRisk.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/HealthRisks/healthRisk-list/healthRisk-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/HealthRisks/healthRisks.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/HealthRisks/healthRisks.module.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Projects/AllProjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Projects/AllProjects.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Projects/CreateProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Projects/CreateProject.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Projects/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Projects/Project.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Projects/ProjectById.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Projects/ProjectById.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Projects/UpdateProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Projects/UpdateProject.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Projects/add-project/add-project.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Projects/project-list/project-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Projects/projects.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Projects/projects.module.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Tests/CreateHealthRiskTestData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Tests/CreateHealthRiskTestData.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Tests/CreateProjectTestData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Tests/CreateProjectTestData.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Tests/CreateUserTestData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Tests/CreateUserTestData.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Users/AllUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Users/AllUsers.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Users/CreateUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Users/CreateUser.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Users/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Users/User.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/Users/UserById.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/Users/UserById.js -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/app.component.html -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/app.component.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/app.module.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/core/core.module.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/core/module-import-guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/core/module-import-guard.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/navigation/navbar-host.component.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /Source/Admin/Web/src/app/services/app-insights-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/services/app-insights-service.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Admin/Web/src/assets/bootstrap/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/assets/bootstrap/_theme.scss -------------------------------------------------------------------------------- /Source/Admin/Web/src/assets/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/assets/bootstrap/_variables.scss -------------------------------------------------------------------------------- /Source/Admin/Web/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/environments/environment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/environments/environment.test.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/environments/environment.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/index.html -------------------------------------------------------------------------------- /Source/Admin/Web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/main.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/polyfills.ts -------------------------------------------------------------------------------- /Source/Admin/Web/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/styles.scss -------------------------------------------------------------------------------- /Source/Admin/Web/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/tsconfig.app.json -------------------------------------------------------------------------------- /Source/Admin/Web/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/src/typings.d.ts -------------------------------------------------------------------------------- /Source/Admin/Web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/Web/tsconfig.json -------------------------------------------------------------------------------- /Source/Admin/bounded-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/bounded-context.json -------------------------------------------------------------------------------- /Source/Admin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Admin/readme.md -------------------------------------------------------------------------------- /Source/Alerts/Alerts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Alerts.sln -------------------------------------------------------------------------------- /Source/Alerts/Concepts/AlertRules/AlertRuleName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/AlertRules/AlertRuleName.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/AlertRules/RuleId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/AlertRules/RuleId.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/Alerts/AlertId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/Alerts/AlertId.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/Alerts/AlertNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/Alerts/AlertNumber.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/Alerts/AlertStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/Alerts/AlertStatus.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/CaseReports/AgeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/CaseReports/AgeGroup.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/CaseReports/Sex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/CaseReports/Sex.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/Concepts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/Concepts.csproj -------------------------------------------------------------------------------- /Source/Alerts/Concepts/DataCollector/DataCollectorId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/DataCollector/DataCollectorId.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/DataCollector/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/DataCollector/Language.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/DataCollector/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/DataCollector/Location.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/DataCollector/PhoneNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/DataCollector/PhoneNumber.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/DataCollector/Sex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/DataCollector/Sex.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/DataOwners/DataOwnerId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/DataOwners/DataOwnerId.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/DataOwners/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/DataOwners/Email.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/DataOwners/NameOfDataOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/DataOwners/NameOfDataOwner.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/HealthRisks/HealthRiskNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/HealthRisks/HealthRiskNumber.cs -------------------------------------------------------------------------------- /Source/Alerts/Concepts/Report/ReportId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Concepts/Report/ReportId.cs -------------------------------------------------------------------------------- /Source/Alerts/Core/.dolittle/artifacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/.dolittle/artifacts.json -------------------------------------------------------------------------------- /Source/Alerts/Core/.dolittle/event-horizons.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /Source/Alerts/Core/.dolittle/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/.dolittle/resources.json -------------------------------------------------------------------------------- /Source/Alerts/Core/.dolittle/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/.dolittle/server.json -------------------------------------------------------------------------------- /Source/Alerts/Core/.dolittle/tenant-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/.dolittle/tenant-map.json -------------------------------------------------------------------------------- /Source/Alerts/Core/.dolittle/tenants.json: -------------------------------------------------------------------------------- 1 | { 2 | "445f8ea8-1a6f-40d7-b2fc-796dba92dc44": {} 3 | } -------------------------------------------------------------------------------- /Source/Alerts/Core/.dolittle/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/.dolittle/topology.json -------------------------------------------------------------------------------- /Source/Alerts/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/Core.csproj -------------------------------------------------------------------------------- /Source/Alerts/Core/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/Dockerfile -------------------------------------------------------------------------------- /Source/Alerts/Core/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/LoggingExtensions.cs -------------------------------------------------------------------------------- /Source/Alerts/Core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/Program.cs -------------------------------------------------------------------------------- /Source/Alerts/Core/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/Properties/launchSettings.json -------------------------------------------------------------------------------- /Source/Alerts/Core/SecurityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/SecurityExtensions.cs -------------------------------------------------------------------------------- /Source/Alerts/Core/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/Startup.cs -------------------------------------------------------------------------------- /Source/Alerts/Core/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/appsettings.Development.json -------------------------------------------------------------------------------- /Source/Alerts/Core/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/appsettings.json -------------------------------------------------------------------------------- /Source/Alerts/Core/hooks/pre_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Core/hooks/pre_push -------------------------------------------------------------------------------- /Source/Alerts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Dockerfile -------------------------------------------------------------------------------- /Source/Alerts/Domain.Specs/Domain.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain.Specs/Domain.Specs.csproj -------------------------------------------------------------------------------- /Source/Alerts/Domain/AlertRules/AlertRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/AlertRules/AlertRule.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/AlertRules/AlertRuleCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/AlertRules/AlertRuleCommandHandler.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/AlertRules/CreateAlertRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/AlertRules/CreateAlertRule.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/AlertRules/DeleteAlertRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/AlertRules/DeleteAlertRule.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/AlertRules/UpdateAlertRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/AlertRules/UpdateAlertRule.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/Alerts/Alerts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/Alerts/Alerts.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/Alerts/CloseAlert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/Alerts/CloseAlert.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/Alerts/CloseAlertBusinessValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/Alerts/CloseAlertBusinessValidator.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/Alerts/CloseAlertCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/Alerts/CloseAlertCommandHandler.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/Alerts/CloseAlertInputValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/Alerts/CloseAlertInputValidator.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/DataOwners/DataOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/DataOwners/DataOwner.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/DataOwners/RegisterDataOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/DataOwners/RegisterDataOwner.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/Domain.csproj -------------------------------------------------------------------------------- /Source/Alerts/Domain/Reports/CaseReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/Reports/CaseReport.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/Reports/CaseReportData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/Reports/CaseReportData.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/Reports/CasesCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/Reports/CasesCommandHandler.cs -------------------------------------------------------------------------------- /Source/Alerts/Domain/Reports/ForcePublishNewCaseReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Domain/Reports/ForcePublishNewCaseReport.cs -------------------------------------------------------------------------------- /Source/Alerts/Events.Admin/Events.Admin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Events.Admin/Events.Admin.csproj -------------------------------------------------------------------------------- /Source/Alerts/Events.Reporting/Events.Reporting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Events.Reporting/Events.Reporting.csproj -------------------------------------------------------------------------------- /Source/Alerts/Events/AlertRules/AlertRuleCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Events/AlertRules/AlertRuleCreated.cs -------------------------------------------------------------------------------- /Source/Alerts/Events/AlertRules/AlertRuleDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Events/AlertRules/AlertRuleDeleted.cs -------------------------------------------------------------------------------- /Source/Alerts/Events/AlertRules/AlertRuleUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Events/AlertRules/AlertRuleUpdated.cs -------------------------------------------------------------------------------- /Source/Alerts/Events/Alerts/AlertClosed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Events/Alerts/AlertClosed.cs -------------------------------------------------------------------------------- /Source/Alerts/Events/Alerts/AlertOpened.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Events/Alerts/AlertOpened.cs -------------------------------------------------------------------------------- /Source/Alerts/Events/Alerts/ReportAddedToAlert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Events/Alerts/ReportAddedToAlert.cs -------------------------------------------------------------------------------- /Source/Alerts/Events/DataOwners/DataOwnerRegistered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Events/DataOwners/DataOwnerRegistered.cs -------------------------------------------------------------------------------- /Source/Alerts/Events/Events.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Events/Events.csproj -------------------------------------------------------------------------------- /Source/Alerts/Events/Reports/ReportRegistered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Events/Reports/ReportRegistered.cs -------------------------------------------------------------------------------- /Source/Alerts/Policies.Specs/Policies.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Policies.Specs/Policies.Specs.csproj -------------------------------------------------------------------------------- /Source/Alerts/Policies/AlertRules/AlertRulesProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Policies/AlertRules/AlertRulesProcessor.cs -------------------------------------------------------------------------------- /Source/Alerts/Policies/Alerts/AlertsEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Policies/Alerts/AlertsEventProcessor.cs -------------------------------------------------------------------------------- /Source/Alerts/Policies/Alerts/BasicMailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Policies/Alerts/BasicMailSender.cs -------------------------------------------------------------------------------- /Source/Alerts/Policies/Alerts/IMailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Policies/Alerts/IMailSender.cs -------------------------------------------------------------------------------- /Source/Alerts/Policies/Alerts/MailSenderBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Policies/Alerts/MailSenderBinder.cs -------------------------------------------------------------------------------- /Source/Alerts/Policies/CaseReports/CaseReportsProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Policies/CaseReports/CaseReportsProcessor.cs -------------------------------------------------------------------------------- /Source/Alerts/Policies/Policies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Policies/Policies.csproj -------------------------------------------------------------------------------- /Source/Alerts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/README.md -------------------------------------------------------------------------------- /Source/Alerts/Read.Specs/Read.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read.Specs/Read.Specs.csproj -------------------------------------------------------------------------------- /Source/Alerts/Read/AlertRules/AlertRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/AlertRules/AlertRule.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/AlertRules/AlertRuleById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/AlertRules/AlertRuleById.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/AlertRules/AlertRuleEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/AlertRules/AlertRuleEventProcessor.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/AlertRules/AllAlertRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/AlertRules/AllAlertRules.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/Alerts/AlertEventProcesor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/Alerts/AlertEventProcesor.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/Alerts/AlertOverview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/Alerts/AlertOverview.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/Alerts/AllAlertOverviews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/Alerts/AllAlertOverviews.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/Alerts/Open/EventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/Alerts/Open/EventProcessor.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/Alerts/Open/OpenAlert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/Alerts/Open/OpenAlert.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/DataCollectors/AllDataCollectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/DataCollectors/AllDataCollectors.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/DataCollectors/DataCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/DataCollectors/DataCollector.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/DataCollectors/DataCollectorById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/DataCollectors/DataCollectorById.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/DataOwners/DataOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/DataOwners/DataOwner.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/DataOwners/DataOwnerProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/DataOwners/DataOwnerProcessor.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/DataOwners/GetDataOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/DataOwners/GetDataOwner.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/Read.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/Read.csproj -------------------------------------------------------------------------------- /Source/Alerts/Read/Reports/AllReports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/Reports/AllReports.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/Reports/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/Reports/Report.cs -------------------------------------------------------------------------------- /Source/Alerts/Read/Reports/ReportEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Read/Reports/ReportEventProcessor.cs -------------------------------------------------------------------------------- /Source/Alerts/Rules.Specs/Rules.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Rules.Specs/Rules.Specs.csproj -------------------------------------------------------------------------------- /Source/Alerts/Rules/Rules.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Rules/Rules.csproj -------------------------------------------------------------------------------- /Source/Alerts/Web/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/@dolittle/build.react/.babelrc" 3 | } -------------------------------------------------------------------------------- /Source/Alerts/Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Dockerfile -------------------------------------------------------------------------------- /Source/Alerts/Web/Environments/demo_api.env: -------------------------------------------------------------------------------- 1 | API_BASE_URL=http://demo.cbsrc.org/alerts 2 | MOCK_COORDINATORS=false -------------------------------------------------------------------------------- /Source/Alerts/Web/Environments/local_api.env: -------------------------------------------------------------------------------- 1 | API_BASE_URL=http://localhost:5000 2 | MOCK_COORDINATORS=false -------------------------------------------------------------------------------- /Source/Alerts/Web/Environments/mock_api.env: -------------------------------------------------------------------------------- 1 | API_BASE_URL=/ 2 | MOCK_COORDINATORS=true -------------------------------------------------------------------------------- /Source/Alerts/Web/Environments/production.env: -------------------------------------------------------------------------------- 1 | API_BASE_URL=/alerts 2 | MOCK_COORDINATORS=false -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/AlertRules/AlertRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/AlertRules/AlertRule.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/AlertRules/AlertRuleById.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/AlertRules/AlertRuleById.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/AlertRules/AllAlertRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/AlertRules/AllAlertRules.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/AlertRules/CreateAlertRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/AlertRules/CreateAlertRule.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/AlertRules/DeleteAlertRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/AlertRules/DeleteAlertRule.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/AlertRules/UpdateAlertRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/AlertRules/UpdateAlertRule.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/Alerts/AlertOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/Alerts/AlertOverview.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/Alerts/AllAlertOverviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/Alerts/AllAlertOverviews.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/Alerts/CloseAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/Alerts/CloseAlert.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/Alerts/Open/OpenAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/Alerts/Open/OpenAlert.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/DataCollectors/DataCollector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/DataCollectors/DataCollector.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/DataOwners/DataOwner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/DataOwners/DataOwner.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/DataOwners/GetDataOwner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/DataOwners/GetDataOwner.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/DataOwners/RegisterDataOwner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/DataOwners/RegisterDataOwner.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/Reports/AllReports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/Reports/AllReports.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Features/Reports/Report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Features/Reports/Report.js -------------------------------------------------------------------------------- /Source/Alerts/Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /Source/Alerts/Web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/README.md -------------------------------------------------------------------------------- /Source/Alerts/Web/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/assets/logo.png -------------------------------------------------------------------------------- /Source/Alerts/Web/hooks/pre_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/hooks/pre_push -------------------------------------------------------------------------------- /Source/Alerts/Web/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/index.ejs -------------------------------------------------------------------------------- /Source/Alerts/Web/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/jsconfig.json -------------------------------------------------------------------------------- /Source/Alerts/Web/karma.conf.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | module.exports = require("@dolittle/build/karma.conf.js"); 3 | -------------------------------------------------------------------------------- /Source/Alerts/Web/mocking/MockCommandCoordinator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/mocking/MockCommandCoordinator.js -------------------------------------------------------------------------------- /Source/Alerts/Web/mocking/MockQueryCoordinator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/mocking/MockQueryCoordinator.js -------------------------------------------------------------------------------- /Source/Alerts/Web/nginx-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/nginx-default.conf -------------------------------------------------------------------------------- /Source/Alerts/Web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/package-lock.json -------------------------------------------------------------------------------- /Source/Alerts/Web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/package.json -------------------------------------------------------------------------------- /Source/Alerts/Web/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/assets/logo.png -------------------------------------------------------------------------------- /Source/Alerts/Web/src/assets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/assets/main.scss -------------------------------------------------------------------------------- /Source/Alerts/Web/src/components/AddAlertRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/components/AddAlertRule.js -------------------------------------------------------------------------------- /Source/Alerts/Web/src/components/AlertMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/components/AlertMenu.js -------------------------------------------------------------------------------- /Source/Alerts/Web/src/components/AlertOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/components/AlertOverview.js -------------------------------------------------------------------------------- /Source/Alerts/Web/src/components/AlertRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/components/AlertRule.js -------------------------------------------------------------------------------- /Source/Alerts/Web/src/components/AlertRuleOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/components/AlertRuleOverview.js -------------------------------------------------------------------------------- /Source/Alerts/Web/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/components/App.js -------------------------------------------------------------------------------- /Source/Alerts/Web/src/components/RegisterDataOwner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/components/RegisterDataOwner.js -------------------------------------------------------------------------------- /Source/Alerts/Web/src/coordinators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/coordinators.js -------------------------------------------------------------------------------- /Source/Alerts/Web/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/index.js -------------------------------------------------------------------------------- /Source/Alerts/Web/src/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/reducer.js -------------------------------------------------------------------------------- /Source/Alerts/Web/src/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/saga.js -------------------------------------------------------------------------------- /Source/Alerts/Web/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/src/store.js -------------------------------------------------------------------------------- /Source/Alerts/Web/wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/wallaby.js -------------------------------------------------------------------------------- /Source/Alerts/Web/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/webpack.config.js -------------------------------------------------------------------------------- /Source/Alerts/Web/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/Web/webpack.config.prod.js -------------------------------------------------------------------------------- /Source/Alerts/bounded-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Alerts/bounded-context.json -------------------------------------------------------------------------------- /Source/Analytics/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/.dockerignore -------------------------------------------------------------------------------- /Source/Analytics/Analytics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Analytics.sln -------------------------------------------------------------------------------- /Source/Analytics/Concepts/Alerts/AlertId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/Alerts/AlertId.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/Alerts/AlertRuleId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/Alerts/AlertRuleId.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/CaseReportId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/CaseReportId.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/Concepts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/Concepts.csproj -------------------------------------------------------------------------------- /Source/Analytics/Concepts/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/Constants.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/DataCollectors/Sex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/DataCollectors/Sex.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/Day.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/Day.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/DistrictId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/DistrictId.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/DistrictName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/DistrictName.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/HealthRisks/HealthRiskId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/HealthRisks/HealthRiskId.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/HealthRisks/HealthRiskName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/HealthRisks/HealthRiskName.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/HealthRisks/HealthRiskNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/HealthRisks/HealthRiskNumber.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/Location.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/NumberOfCasereports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/NumberOfCasereports.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/NumberOfPeople.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/NumberOfPeople.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/RegionId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/RegionId.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/RegionName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/RegionName.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/VillageId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/VillageId.cs -------------------------------------------------------------------------------- /Source/Analytics/Concepts/VillageName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Concepts/VillageName.cs -------------------------------------------------------------------------------- /Source/Analytics/Core/.dolittle/artifacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/.dolittle/artifacts.json -------------------------------------------------------------------------------- /Source/Analytics/Core/.dolittle/event-horizons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/.dolittle/event-horizons.json -------------------------------------------------------------------------------- /Source/Analytics/Core/.dolittle/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/.dolittle/resources.json -------------------------------------------------------------------------------- /Source/Analytics/Core/.dolittle/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/.dolittle/server.json -------------------------------------------------------------------------------- /Source/Analytics/Core/.dolittle/tenant-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/.dolittle/tenant-map.json -------------------------------------------------------------------------------- /Source/Analytics/Core/.dolittle/tenants.json: -------------------------------------------------------------------------------- 1 | { 2 | "445f8ea8-1a6f-40d7-b2fc-796dba92dc44": {} 3 | } -------------------------------------------------------------------------------- /Source/Analytics/Core/.dolittle/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/.dolittle/topology.json -------------------------------------------------------------------------------- /Source/Analytics/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/Core.csproj -------------------------------------------------------------------------------- /Source/Analytics/Core/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/LoggingExtensions.cs -------------------------------------------------------------------------------- /Source/Analytics/Core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/Program.cs -------------------------------------------------------------------------------- /Source/Analytics/Core/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/Properties/launchSettings.json -------------------------------------------------------------------------------- /Source/Analytics/Core/SecurityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/SecurityExtensions.cs -------------------------------------------------------------------------------- /Source/Analytics/Core/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/Startup.cs -------------------------------------------------------------------------------- /Source/Analytics/Core/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/appsettings.Development.json -------------------------------------------------------------------------------- /Source/Analytics/Core/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Core/appsettings.json -------------------------------------------------------------------------------- /Source/Analytics/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Dockerfile -------------------------------------------------------------------------------- /Source/Analytics/Events.Admin/Events.Admin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Events.Admin/Events.Admin.csproj -------------------------------------------------------------------------------- /Source/Analytics/Events.Alerts/Alerts/AlertOpened.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Events.Alerts/Alerts/AlertOpened.cs -------------------------------------------------------------------------------- /Source/Analytics/Events.Alerts/Alerts/AlertRuleCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Events.Alerts/Alerts/AlertRuleCreated.cs -------------------------------------------------------------------------------- /Source/Analytics/Events.Alerts/Alerts/AlertRuleUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Events.Alerts/Alerts/AlertRuleUpdated.cs -------------------------------------------------------------------------------- /Source/Analytics/Events.Alerts/Events.Alerts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Events.Alerts/Events.Alerts.csproj -------------------------------------------------------------------------------- /Source/Analytics/Events.Reporting/Events.Reporting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Events.Reporting/Events.Reporting.csproj -------------------------------------------------------------------------------- /Source/Analytics/Read/Alerts/Alert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/Alerts/Alert.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/Alerts/AlertRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/Alerts/AlertRule.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/Alerts/EventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/Alerts/EventProcessor.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/CaseReports/AllCaseReportsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/CaseReports/AllCaseReportsQuery.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/CaseReports/CaseReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/CaseReports/CaseReport.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/CaseReports/RegionWithHealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/CaseReports/RegionWithHealthRisk.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/CaseReports/TotalReports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/CaseReports/TotalReports.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/CaseReports/TotalReportsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/CaseReports/TotalReportsQuery.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/DataCollectors/AllRegions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/DataCollectors/AllRegions.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/DataCollectors/DataCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/DataCollectors/DataCollector.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/DataCollectors/District.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/DataCollectors/District.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/DataCollectors/EventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/DataCollectors/EventProcessor.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/DataCollectors/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/DataCollectors/Region.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/DataCollectors/Village.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/DataCollectors/Village.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/HealthRisks/AllHealthRisks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/HealthRisks/AllHealthRisks.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/HealthRisks/EventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/HealthRisks/EventProcessor.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/HealthRisks/HealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/HealthRisks/HealthRisk.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/Map/CaseReportForMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/Map/CaseReportForMap.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/Map/CaseReportsLast4Weeks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/Map/CaseReportsLast4Weeks.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/Map/CaseReportsLast4WeeksQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/Map/CaseReportsLast4WeeksQuery.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/Map/CaseReportsLast7Days.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/Map/CaseReportsLast7Days.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/Map/CaseReportsLast7DaysQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/Map/CaseReportsLast7DaysQuery.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/Map/CaseReportsPerHealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/Map/CaseReportsPerHealthRisk.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/Map/MapProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/Map/MapProcessor.cs -------------------------------------------------------------------------------- /Source/Analytics/Read/Read.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Read/Read.csproj -------------------------------------------------------------------------------- /Source/Analytics/Web/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/.babelrc -------------------------------------------------------------------------------- /Source/Analytics/Web/DependenciesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/DependenciesExtensions.cs -------------------------------------------------------------------------------- /Source/Analytics/Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/Dockerfile -------------------------------------------------------------------------------- /Source/Analytics/Web/Environments/development.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/Environments/development.env -------------------------------------------------------------------------------- /Source/Analytics/Web/Environments/production.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/Environments/production.env -------------------------------------------------------------------------------- /Source/Analytics/Web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/README.md -------------------------------------------------------------------------------- /Source/Analytics/Web/assets/dolittle_logo_negative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/assets/dolittle_logo_negative.svg -------------------------------------------------------------------------------- /Source/Analytics/Web/assets/dolittle_logo_positive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/assets/dolittle_logo_positive.svg -------------------------------------------------------------------------------- /Source/Analytics/Web/assets/dolittle_symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/assets/dolittle_symbol.svg -------------------------------------------------------------------------------- /Source/Analytics/Web/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/assets/splash.png -------------------------------------------------------------------------------- /Source/Analytics/Web/dolittle.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/dolittle.env -------------------------------------------------------------------------------- /Source/Analytics/Web/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/index.ejs -------------------------------------------------------------------------------- /Source/Analytics/Web/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/jsconfig.json -------------------------------------------------------------------------------- /Source/Analytics/Web/karma.conf.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | module.exports = require("@dolittle/build/karma.conf.js"); 3 | -------------------------------------------------------------------------------- /Source/Analytics/Web/nginx-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/nginx-default.conf -------------------------------------------------------------------------------- /Source/Analytics/Web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/package-lock.json -------------------------------------------------------------------------------- /Source/Analytics/Web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/package.json -------------------------------------------------------------------------------- /Source/Analytics/Web/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/run.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/Features/Alerts/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/Features/Alerts/Alert.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/Features/Alerts/AlertRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/Features/Alerts/AlertRule.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/Features/DataCollectors/Region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/Features/DataCollectors/Region.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/actions/analysisactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/actions/analysisactions.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/assets/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/assets/colors.scss -------------------------------------------------------------------------------- /Source/Analytics/Web/src/assets/country-overview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/assets/country-overview.scss -------------------------------------------------------------------------------- /Source/Analytics/Web/src/assets/inclusions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/assets/inclusions.scss -------------------------------------------------------------------------------- /Source/Analytics/Web/src/assets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/assets/main.scss -------------------------------------------------------------------------------- /Source/Analytics/Web/src/assets/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/assets/map.css -------------------------------------------------------------------------------- /Source/Analytics/Web/src/assets/react-leaflet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/assets/react-leaflet.scss -------------------------------------------------------------------------------- /Source/Analytics/Web/src/assets/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/assets/table.scss -------------------------------------------------------------------------------- /Source/Analytics/Web/src/assets/vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/assets/vars.scss -------------------------------------------------------------------------------- /Source/Analytics/Web/src/components/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/components/Map.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/components/MapOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/components/MapOverview.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/components/MapPieChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/components/MapPieChart.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/exports.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/index.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/reducers/analyticsReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/reducers/analyticsReducer.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/reducers/index.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/utils/dateUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/utils/dateUtils.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/utils/request.js -------------------------------------------------------------------------------- /Source/Analytics/Web/src/utils/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/src/utils/routes.js -------------------------------------------------------------------------------- /Source/Analytics/Web/wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/wallaby.js -------------------------------------------------------------------------------- /Source/Analytics/Web/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/Web/webpack.config.js -------------------------------------------------------------------------------- /Source/Analytics/bounded-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Analytics/bounded-context.json -------------------------------------------------------------------------------- /Source/Navigation/Web.Angular/nav-top-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.Angular/nav-top-bar.component.html -------------------------------------------------------------------------------- /Source/Navigation/Web.Angular/nav-top-bar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.Angular/nav-top-bar.component.scss -------------------------------------------------------------------------------- /Source/Navigation/Web.Angular/nav-top-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.Angular/nav-top-bar.component.ts -------------------------------------------------------------------------------- /Source/Navigation/Web.Angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.Angular/package-lock.json -------------------------------------------------------------------------------- /Source/Navigation/Web.Angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.Angular/package.json -------------------------------------------------------------------------------- /Source/Navigation/Web.Angular/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.Angular/readme.md -------------------------------------------------------------------------------- /Source/Navigation/Web.React/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.React/.babelrc -------------------------------------------------------------------------------- /Source/Navigation/Web.React/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.React/index.js -------------------------------------------------------------------------------- /Source/Navigation/Web.React/lib/cbs-navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.React/lib/cbs-navigation.scss -------------------------------------------------------------------------------- /Source/Navigation/Web.React/lib/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.React/lib/colors.scss -------------------------------------------------------------------------------- /Source/Navigation/Web.React/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.React/lib/index.js -------------------------------------------------------------------------------- /Source/Navigation/Web.React/lib/vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.React/lib/vars.scss -------------------------------------------------------------------------------- /Source/Navigation/Web.React/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.React/package-lock.json -------------------------------------------------------------------------------- /Source/Navigation/Web.React/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.React/package.json -------------------------------------------------------------------------------- /Source/Navigation/Web.React/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Navigation/Web.React/readme.md -------------------------------------------------------------------------------- /Source/NotificationGateway/Concepts/Concepts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Concepts/Concepts.csproj -------------------------------------------------------------------------------- /Source/NotificationGateway/Concepts/MessageId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Concepts/MessageId.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Concepts/SMS/Gateways/ApiKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Concepts/SMS/Gateways/ApiKey.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Concepts/SMS/Gateways/Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Concepts/SMS/Gateways/Name.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Concepts/SMS/Gateways/OID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Concepts/SMS/Gateways/OID.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Concepts/SMS/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Concepts/SMS/Message.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Concepts/SMS/PhoneNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Concepts/SMS/PhoneNumber.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/.dolittle/artifacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/.dolittle/artifacts.json -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/.dolittle/event-horizons.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/.dolittle/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/.dolittle/resources.json -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/.dolittle/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/.dolittle/server.json -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/.dolittle/tenant-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/.dolittle/tenant-map.json -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/.dolittle/tenants.json: -------------------------------------------------------------------------------- 1 | { 2 | "445f8ea8-1a6f-40d7-b2fc-796dba92dc44": {} 3 | } -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/.dolittle/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/.dolittle/topology.json -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/Core.csproj -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/Dockerfile -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/LoggingExtensions.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/Program.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/SecurityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/SecurityExtensions.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/Startup.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/apikeyToTenant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/apikeyToTenant.json -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/appsettings.json -------------------------------------------------------------------------------- /Source/NotificationGateway/Core/hooks/pre_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Core/hooks/pre_push -------------------------------------------------------------------------------- /Source/NotificationGateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Dockerfile -------------------------------------------------------------------------------- /Source/NotificationGateway/Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Domain/Domain.csproj -------------------------------------------------------------------------------- /Source/NotificationGateway/Domain/SMS/Gateways/Rules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Domain/SMS/Gateways/Rules.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Domain/SMS/TextMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Domain/SMS/TextMessage.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Events/Events.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Events/Events.csproj -------------------------------------------------------------------------------- /Source/NotificationGateway/NotificationGateway.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/NotificationGateway.sln -------------------------------------------------------------------------------- /Source/NotificationGateway/Policies/Policies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Policies/Policies.csproj -------------------------------------------------------------------------------- /Source/NotificationGateway/Read.Specs/Read.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Read.Specs/Read.Specs.csproj -------------------------------------------------------------------------------- /Source/NotificationGateway/Read/Read.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Read/Read.csproj -------------------------------------------------------------------------------- /Source/NotificationGateway/Read/SMS/AllReceivedMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Read/SMS/AllReceivedMessages.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Read/SMS/Gateways/SmsGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Read/SMS/Gateways/SmsGateway.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Read/SMS/ReceivedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Read/SMS/ReceivedMessage.cs -------------------------------------------------------------------------------- /Source/NotificationGateway/Rules.Specs/Rules.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Rules.Specs/Rules.Specs.csproj -------------------------------------------------------------------------------- /Source/NotificationGateway/Rules/Rules.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Rules/Rules.csproj -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/@dolittle/build.react/.babelrc" 3 | } -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/Dockerfile -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/Environments/development.env: -------------------------------------------------------------------------------- 1 | API_BASE_URL=http://localhost:5010 -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/Environments/production.env: -------------------------------------------------------------------------------- 1 | API_BASE_URL=/notifications -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/Features/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/Features/App.js -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/Features/SMS/Messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/Features/SMS/Messages.js -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/Features/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/Features/index.js -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/README.md -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/hooks/pre_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/hooks/pre_push -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/index.ejs -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/jsconfig.json -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/karma.conf.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | module.exports = require("@dolittle/build/karma.conf.js"); 3 | -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/nginx-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/nginx-default.conf -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/package-lock.json -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/package.json -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/wallaby.js -------------------------------------------------------------------------------- /Source/NotificationGateway/Web/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/Web/webpack.config.js -------------------------------------------------------------------------------- /Source/NotificationGateway/bounded-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/NotificationGateway/bounded-context.json -------------------------------------------------------------------------------- /Source/Reporting/Concepts/CaseReports/AgeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/CaseReports/AgeGroup.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/CaseReports/CaseReportId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/CaseReports/CaseReportId.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/Concepts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/Concepts.csproj -------------------------------------------------------------------------------- /Source/Reporting/Concepts/DataCollectors/DisplayName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/DataCollectors/DisplayName.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/DataCollectors/District.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/DataCollectors/District.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/DataCollectors/FullName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/DataCollectors/FullName.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/DataCollectors/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/DataCollectors/Language.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/DataCollectors/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/DataCollectors/Location.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/DataCollectors/PhoneNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/DataCollectors/PhoneNumber.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/DataCollectors/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/DataCollectors/Region.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/DataCollectors/Sex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/DataCollectors/Sex.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/DataCollectors/Village.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/DataCollectors/Village.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/DataCollectors/YearOfBirth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/DataCollectors/YearOfBirth.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/DataVerifiers/DataVerifierId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/DataVerifiers/DataVerifierId.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/HealthRisks/HealthRiskId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/HealthRisks/HealthRiskId.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/HealthRisks/HealthRiskName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/HealthRisks/HealthRiskName.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/Projects/ProjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/Projects/ProjectId.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/Projects/ProjectIdValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/Projects/ProjectIdValidator.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/Projects/ProjectName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/Projects/ProjectName.cs -------------------------------------------------------------------------------- /Source/Reporting/Concepts/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Concepts/Region.cs -------------------------------------------------------------------------------- /Source/Reporting/Core/.dolittle/artifacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/.dolittle/artifacts.json -------------------------------------------------------------------------------- /Source/Reporting/Core/.dolittle/event-horizons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/.dolittle/event-horizons.json -------------------------------------------------------------------------------- /Source/Reporting/Core/.dolittle/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/.dolittle/resources.json -------------------------------------------------------------------------------- /Source/Reporting/Core/.dolittle/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/.dolittle/server.json -------------------------------------------------------------------------------- /Source/Reporting/Core/.dolittle/tenant-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/.dolittle/tenant-map.json -------------------------------------------------------------------------------- /Source/Reporting/Core/.dolittle/tenants.json: -------------------------------------------------------------------------------- 1 | { 2 | "445f8ea8-1a6f-40d7-b2fc-796dba92dc44": {} 3 | } -------------------------------------------------------------------------------- /Source/Reporting/Core/.dolittle/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/.dolittle/topology.json -------------------------------------------------------------------------------- /Source/Reporting/Core/CaseReports/ExportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/CaseReports/ExportController.cs -------------------------------------------------------------------------------- /Source/Reporting/Core/CaseReports/Formats/CsvExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/CaseReports/Formats/CsvExporter.cs -------------------------------------------------------------------------------- /Source/Reporting/Core/CaseReports/Formats/ExcelExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/CaseReports/Formats/ExcelExporter.cs -------------------------------------------------------------------------------- /Source/Reporting/Core/CaseReports/ICanExportCaseReports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/CaseReports/ICanExportCaseReports.cs -------------------------------------------------------------------------------- /Source/Reporting/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/Core.csproj -------------------------------------------------------------------------------- /Source/Reporting/Core/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/Dockerfile -------------------------------------------------------------------------------- /Source/Reporting/Core/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/LoggingExtensions.cs -------------------------------------------------------------------------------- /Source/Reporting/Core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/Program.cs -------------------------------------------------------------------------------- /Source/Reporting/Core/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/Properties/launchSettings.json -------------------------------------------------------------------------------- /Source/Reporting/Core/SecurityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/SecurityExtensions.cs -------------------------------------------------------------------------------- /Source/Reporting/Core/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/Startup.cs -------------------------------------------------------------------------------- /Source/Reporting/Core/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/appsettings.Development.json -------------------------------------------------------------------------------- /Source/Reporting/Core/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/appsettings.json -------------------------------------------------------------------------------- /Source/Reporting/Core/hooks/pre_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Core/hooks/pre_push -------------------------------------------------------------------------------- /Source/Reporting/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Dockerfile -------------------------------------------------------------------------------- /Source/Reporting/Domain.Specs/Domain.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Domain.Specs/Domain.Specs.csproj -------------------------------------------------------------------------------- /Source/Reporting/Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Domain/Domain.csproj -------------------------------------------------------------------------------- /Source/Reporting/Domain/Management/DataCollectors/Rules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Domain/Management/DataCollectors/Rules.cs -------------------------------------------------------------------------------- /Source/Reporting/Domain/TestData/Data/CaseReports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Domain/TestData/Data/CaseReports.json -------------------------------------------------------------------------------- /Source/Reporting/Domain/TestData/Data/DataCollectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Domain/TestData/Data/DataCollectors.json -------------------------------------------------------------------------------- /Source/Reporting/Domain/TestData/Data/HealthRisks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Domain/TestData/Data/HealthRisks.json -------------------------------------------------------------------------------- /Source/Reporting/Domain/TestData/HealthRisks/HealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Domain/TestData/HealthRisks/HealthRisk.cs -------------------------------------------------------------------------------- /Source/Reporting/Domain/TestData/TestDataCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Domain/TestData/TestDataCommandHandler.cs -------------------------------------------------------------------------------- /Source/Reporting/Events.Admin/Events.Admin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Events.Admin/Events.Admin.csproj -------------------------------------------------------------------------------- /Source/Reporting/Events/Events.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Events/Events.csproj -------------------------------------------------------------------------------- /Source/Reporting/Policies.Specs/Policies.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Policies.Specs/Policies.Specs.csproj -------------------------------------------------------------------------------- /Source/Reporting/Policies/Policies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Policies/Policies.csproj -------------------------------------------------------------------------------- /Source/Reporting/Read.Specs/Read.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Read.Specs/Read.Specs.csproj -------------------------------------------------------------------------------- /Source/Reporting/Read/Read.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Read/Read.csproj -------------------------------------------------------------------------------- /Source/Reporting/Read/Reporting/CaseReports/CaseReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Read/Reporting/CaseReports/CaseReport.cs -------------------------------------------------------------------------------- /Source/Reporting/Read/Reporting/HealthRisks/HealthRisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Read/Reporting/HealthRisks/HealthRisk.cs -------------------------------------------------------------------------------- /Source/Reporting/Read/Reporting/Projects/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Read/Reporting/Projects/Project.cs -------------------------------------------------------------------------------- /Source/Reporting/Read/Reporting/Training/EventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Read/Reporting/Training/EventProcessor.cs -------------------------------------------------------------------------------- /Source/Reporting/Read/Reporting/Training/TrainingReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Read/Reporting/Training/TrainingReport.cs -------------------------------------------------------------------------------- /Source/Reporting/Reporting.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Reporting.code-workspace -------------------------------------------------------------------------------- /Source/Reporting/Reporting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Reporting.sln -------------------------------------------------------------------------------- /Source/Reporting/Rules.Specs/Rules.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Rules.Specs/Rules.Specs.csproj -------------------------------------------------------------------------------- /Source/Reporting/Rules/Rules.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Rules/Rules.csproj -------------------------------------------------------------------------------- /Source/Reporting/Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/Dockerfile -------------------------------------------------------------------------------- /Source/Reporting/Web/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/angular.json -------------------------------------------------------------------------------- /Source/Reporting/Web/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/browserslist -------------------------------------------------------------------------------- /Source/Reporting/Web/hooks/pre_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/hooks/pre_push -------------------------------------------------------------------------------- /Source/Reporting/Web/nginx-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/nginx-default.conf -------------------------------------------------------------------------------- /Source/Reporting/Web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/package-lock.json -------------------------------------------------------------------------------- /Source/Reporting/Web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/package.json -------------------------------------------------------------------------------- /Source/Reporting/Web/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/readme.md -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/Management/DataCollectors/details/details.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/Management/DataCollectors/edit/edit.scss: -------------------------------------------------------------------------------- 1 | #dataCollectorLocation { 2 | height: 300px; 3 | } -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/Management/Language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/app/Management/Language.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/Management/Location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/app/Management/Location.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/Management/Sex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/app/Management/Sex.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/Reporting/Projects/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/app/Reporting/Projects/Project.js -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/Reporting/reporting.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/app/Reporting/reporting.module.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/app/app.component.html -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/app/app.component.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/app/app.module.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/navigation/navbar-host.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Reporting/Web/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Reporting/Web/src/assets/bootstrap/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/assets/bootstrap/_theme.scss -------------------------------------------------------------------------------- /Source/Reporting/Web/src/assets/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/assets/bootstrap/_variables.scss -------------------------------------------------------------------------------- /Source/Reporting/Web/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/environments/environment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/environments/environment.test.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/environments/environment.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/index.html -------------------------------------------------------------------------------- /Source/Reporting/Web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/main.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/polyfills.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/styles.scss -------------------------------------------------------------------------------- /Source/Reporting/Web/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/tsconfig.app.json -------------------------------------------------------------------------------- /Source/Reporting/Web/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/src/typings.d.ts -------------------------------------------------------------------------------- /Source/Reporting/Web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/tsconfig.json -------------------------------------------------------------------------------- /Source/Reporting/Web/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/Web/tslint.json -------------------------------------------------------------------------------- /Source/Reporting/bounded-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/bounded-context.json -------------------------------------------------------------------------------- /Source/Reporting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/Reporting/readme.md -------------------------------------------------------------------------------- /Source/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/Source/application.json -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/cbs/HEAD/_config.yml --------------------------------------------------------------------------------