Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use subject's Related Entity Location meta tag on related resources #3097

Merged
merged 5 commits into from
Feb 26, 2024

Conversation

ellykits
Copy link
Collaborator

@ellykits ellykits commented Feb 23, 2024

IMPORTANT: Where possible all PRs must be linked to a Github issue

Fixes #3077

Engineer Checklist

  • I have written Unit tests for any new feature(s) and edge cases for bug fixes
  • I have added any strings visible on UI components to the strings.xml file
  • I have updated the CHANGELOG.md file for any notable changes to the codebase
  • I have run ./gradlew spotlessApply and ./gradlew spotlessCheck to check my code follows the project's style guide
  • I have built and run the FHIRCore app to verify my change fixes the issue and/or does not break the app
  • I have checked that this PR does NOT introduce breaking changes that require an update to Content and/or Configs? If it does add a sample here or a link to exactly what changes need to be made to the content.

Code Reviewer Checklist

  • I have verified Unit tests have been written for any new feature(s) and edge cases
  • I have verified any strings visible on UI components are in the strings.xml file
  • I have verifed the CHANGELOG.md file has any notable changes to the codebase
  • I have verified the solution has been implemented in a configurable and generic way for reuseable components
  • I have built and run the FHIRCore app to verify the change fixes the issue and/or does not break the app

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Copy link

codecov bot commented Feb 23, 2024

Codecov Report

Attention: Patch coverage is 0% with 31 lines in your changes are missing coverage. Please review.

Project coverage is 29.8%. Comparing base (ad3a737) to head (2e9bced).
Report is 184 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##              main   #3097      +/-   ##
==========================================
- Coverage     64.5%   29.8%   -34.7%     
+ Complexity    1075     652     -423     
==========================================
  Files          218     236      +18     
  Lines         9635   11074    +1439     
  Branches      1897    1928      +31     
==========================================
- Hits          6218    3306    -2912     
- Misses        2234    7338    +5104     
+ Partials      1183     430     -753     
Flag Coverage Δ
engine 66.2% <ø> (-6.5%) ⬇️
geowidget 47.2% <ø> (-17.1%) ⬇️
quest 5.2% <0.0%> (-53.7%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files Coverage Δ
...e/quest/ui/questionnaire/QuestionnaireViewModel.kt 3.3% <0.0%> (-69.8%) ⬇️

... and 126 files with indirect coverage changes

pld
pld previously approved these changes Feb 23, 2024
pld
pld previously approved these changes Feb 23, 2024
ellykits and others added 2 commits February 23, 2024 12:36
@pld pld force-pushed the fix-set-related-entity-location branch from 01e39fb to 70c0be4 Compare February 23, 2024 17:37
Comment on lines 417 to 441
subjectType: ResourceType?,
) {
questionnaireConfig.groupResource?.let {
if (it.groupIdentifier.isNotEmpty() && !it.removeGroup && !it.removeMember) {
val group =
loadResource(
ResourceType.Group,
it.groupIdentifier.extractLogicalIdUuid(),
)
as Group?
if (group != null) {
val system =
context.getString(
org.smartregister.fhircore.engine.R.string
.sync_strategy_related_entity_location_system,
)
group.meta.tag.filter { coding -> coding.system == system }.forEach(this.meta::addTag)
val resourceIdPair =
when {
!questionnaireConfig.resourceIdentifier.isNullOrEmpty() && subjectType != null -> {
Pair(subjectType, questionnaireConfig.resourceIdentifier!!)
}
!questionnaireConfig.groupResource?.groupIdentifier.isNullOrEmpty() &&
questionnaireConfig.groupResource?.removeGroup != true &&
questionnaireConfig.groupResource?.removeMember != true -> {
Pair(ResourceType.Group, questionnaireConfig.groupResource!!.groupIdentifier)
}
else -> null
}
if (resourceIdPair != null) {
val (resourceType, resourceId) = resourceIdPair
val group =
loadResource(resourceType = resourceType, resourceIdentifier = resourceId) as Group?
if (group != null) {
val system =
context.getString(
org.smartregister.fhircore.engine.R.string.sync_strategy_related_entity_location_system,
)
group.meta.tag.filter { coding -> coding.system == system }.forEach(this.meta::addTag)
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ellykits how do we handle the situation where we do not want to propagate the Group REL (Related Entity location) to the patient resources?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Group's REL only propagates if the Questionnaire has a groupResource (should only happen when adding Group member) config. If we do not want to propagate the group's REL two options:

  1. Do not configure groupResource on resource
  2. Provide configurations for extracting location ID from QuestionnaireResponse when launching the questionnaire. The location ID will be used on the subject and related resources extracted from the questionnaire submission. (To be used when you want the configured locationId to override the subject's)

The subject resource's REL is given precedence over the Group's REL because, if the subject were added as a member of the Group it would have the Group's REL anyway.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ellykits I assume point 2 is going to handle the situation where a Familly member does not leave in the same place as the rest of the family, right ?

Copy link
Collaborator Author

@ellykits ellykits Feb 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that's correct.

…fhircore into fix-set-related-entity-location

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Copy link
Contributor

@f-odhiambo f-odhiambo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Resource are adding Tags as expected

@ndegwamartin
Copy link
Contributor

@ellykits merging this and creating a separate issue for the unit tests for this update.

@ndegwamartin ndegwamartin merged commit 2785261 into main Feb 26, 2024
4 of 5 checks passed
@ndegwamartin ndegwamartin deleted the fix-set-related-entity-location branch February 26, 2024 14:38
AbdulWahabMemon added a commit that referenced this pull request Feb 26, 2024
* main:
  update admin-dashboard-feature docs (#3084)
  eir demo flavor (#3102)
  Use subject's Related Entity Location meta tag on related resources (#3097)
Lentumunai-Mark pushed a commit that referenced this pull request Feb 27, 2024
…3097)

* Use subject's Related Entity Location meta tag on related resources
---------

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: pld <peter@ona.io>
AbdulWahabMemon added a commit that referenced this pull request Feb 28, 2024
* main:
  update admin-dashboard-feature docs (#3084)
  eir demo flavor (#3102)
  Use subject's Related Entity Location meta tag on related resources (#3097)
ellykits added a commit that referenced this pull request May 14, 2024
…#3107)

* Add location service with Preference feature.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Update tests WIP

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Use subject's Related Entity Location meta tag on related resources (#3097)

* Use subject's Related Entity Location meta tag on related resources
---------

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: pld <peter@ona.io>

* eir demo flavor (#3102)

* update admin-dashboard-feature docs (#3084)

Co-authored-by: Benjamin Mwalimu <dubdabasoduba@gmail.com>

* Add location service with Preference feature.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Resolve conflicts

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Run spotless apply.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Run spotless Apply.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Add deny permission for UI automator

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Grant permission on tests where required.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Remove unused functions.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* rename function to be more descriptive.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Adress PR feedback provided.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Format files changed by running spotlessApply

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Update application config to remove outdated variables

* Use data store on Location service

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Change grant permission rule.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* fix spotless check

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Change how we're accessing permission rule.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Run spotless check.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Try resolve failing test.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Add permission granted rule.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Add @ignore to the failing tests

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Test commit, trying out new CI fixes.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Fix spotless check

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Update AppMainActivityTest.kt

* Fix spotless check failing.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

---------

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>
Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: pld <peter@ona.io>
Co-authored-by: Roy <84201465+roywanyaga@users.noreply.github.com>
Co-authored-by: Owais <62104757+owais-vd@users.noreply.github.com>
Co-authored-by: Benjamin Mwalimu <dubdabasoduba@gmail.com>
ellykits added a commit that referenced this pull request Jul 18, 2024
* Add Internationalization documentation 📝 (#3221)

* Add Internationalization documentation 📝
* Disable autobackup - not recommended
* Pin Mac OS runner version to previous stable version | Fix build 💚

* Remove init block blocking thrown errors (#3231)

* Interpolate image visible property (#3234)

* Configs Versioning (#3189)

* Configs versioning setup

* init implementation guide version in settings screen

* remove unused tag

* add string resource

* fetch composition referenced in IG

* add implementationguide to test

* Add ImplementationGuide resource

* update tests

* Update implementation_guide_config.json

* Refactor flow

* Rename implementationGuideUrl to implementationGuideId

- Code cleanup

* Format implementation_guide_config.json

* Run spotlessApply

* Remove implementationGuideId entry from app config

- Add name field to IG config
- Update variable name

* Refactor implementation from config registry

* refactor to use IG by version

* Run spotlessApply

* Refactors and bug fixes

* Update sample ImplementationGuide URL and version

* Update fetchRemoteIG app URL

* Remove flavour from versionName when fetching IG

* Save IG after fetch

* save ImplementationGuide to database

* introduce fetchConfiguration IG test skeletons

* Update IG URL to FQDN

* find and sort IG by context-quantity

* fix failing tests

* update IG tests

* use implmentaionGuide extension guide

* use version code for context-quantity

* empty commit to trigger checks

* run spotlessApply

* remove unnecessary implementationGuide details from userSettingsScreen

* spotlessApply

* initiate Implementation Guide documentation

* Update strings.xml

Co-authored-by: Peter Lubell-Doughtie <peter@ona.io>

---------

Co-authored-by: Simon Njoroge <snjoroge@ona.io>
Co-authored-by: Benjamin Mwalimu <dubdabasoduba@gmail.com>
Co-authored-by: Peter Lubell-Doughtie <peter@ona.io>

* Fix questionnaire prepopulation using initialExpression (#3240)

* Implement searchable multiselect widget (#3123)

* Implement multiselectview

Start implementation on multi-select view. Includes the checkbox and listeners

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Change preview data

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Use TristateCheckbox on MultiSelect view

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Implement functionality for generating map required in multiselectview

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Implement bottomsheet for multi select widget

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Fix multi-select checkbox select color

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Implement functionality for node selection

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Refactor multi select implementation

Use Tree data structure as required. Search Tree instead of
searching the map. Render the UI from the Tree.

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Improve UX on multi selector widget search

Hide keyboard when search action is triggered. Reset data when search
text is empty.

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Refactor MultiSelect UI to use Compose Scaffold

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Use ProtoDataStore to store SyncLocations

Also refactored how root nodes are identified. Use configuration instead
of defaulting to a node without a parent node as the root node.

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Use selected locations from multi-select widget to sync resources

Add comma separated values for _syncLocations query parameter for all requests for the
configured sync Resources.

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Refactor ApplicationConfiguration.syncStrategies to syncStrategy

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Fix child node checked state issue

* Show progress dialog

* Add no results view

* Refactor initial sync logic + disable sync progresss dialog

* Disable progress dialog on initial sync

* Fix spotless formatting errors

* Add Practitioner to SyncStrategy

* Fix failing tests

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

---------

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: Benjamin Mwalimu <dubdabasoduba@gmail.com>
Co-authored-by: Hamza Ahmed Khan <70560433+hamza-vd@users.noreply.github.com>
Co-authored-by: Hamza Ahmed Khan <hamza.khan@venturedive.com>

* Change questionnaire button styling (#3244)

* [Build Variant] ECD App (#3222)

* Initial Commit

* Add custom view holder for choice input type password in Questionnaire

* Add ECD Hack config

* Update constants to one place

* Remove ECDHack app variant

---------

Co-authored-by: mapratama <muh.angga06@gmail.com>
Co-authored-by: Sebastian <36365043+SebaMutuku@users.noreply.github.com>
Co-authored-by: SebaMutuku <sebastian.muthiani@gmail.com>

* Bump express from 4.18.2 to 4.19.2 (#3182)

Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.18.2...4.19.2)

---
updated-dependencies:
- dependency-name: express
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Implement feature to compute distance between two locations via Rules (#3107)

* Add location service with Preference feature.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Update tests WIP

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Use subject's Related Entity Location meta tag on related resources (#3097)

* Use subject's Related Entity Location meta tag on related resources
---------

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: pld <peter@ona.io>

* eir demo flavor (#3102)

* update admin-dashboard-feature docs (#3084)

Co-authored-by: Benjamin Mwalimu <dubdabasoduba@gmail.com>

* Add location service with Preference feature.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Resolve conflicts

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Run spotless apply.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Run spotless Apply.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Add deny permission for UI automator

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Grant permission on tests where required.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Remove unused functions.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* rename function to be more descriptive.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Adress PR feedback provided.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Format files changed by running spotlessApply

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Update application config to remove outdated variables

* Use data store on Location service

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Change grant permission rule.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* fix spotless check

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Change how we're accessing permission rule.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Run spotless check.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Try resolve failing test.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Add permission granted rule.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Add @ignore to the failing tests

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Test commit, trying out new CI fixes.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Fix spotless check

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

* Update AppMainActivityTest.kt

* Fix spotless check failing.

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>

---------

Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>
Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: pld <peter@ona.io>
Co-authored-by: Roy <84201465+roywanyaga@users.noreply.github.com>
Co-authored-by: Owais <62104757+owais-vd@users.noreply.github.com>
Co-authored-by: Benjamin Mwalimu <dubdabasoduba@gmail.com>

* Enhance Insight Screen UX (#3195)

* swap app and assignment info

* update tests

* edit insights screen

* edit insights screen

* edit insights screen

* edit insights screen

* remove null username

* cater for empty parameters

* Enhance UI

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

---------

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: Martin Ndegwa <ndegwamartin@users.noreply.github.com>
Co-authored-by: Elly Kitoto <junkmailstoelly@gmail.com>

* added new property in service-card configs to control the status-icon-size on register screen (#3219)

Co-authored-by: owais-vd <owais.ali@venturedive.com>
Co-authored-by: Benjamin Mwalimu <dubdabasoduba@gmail.com>

* Fix remove household (#3262)

Co-authored-by: Aleem Azhar <aleem.azhar@venturedive.com>

* Fix disable edit fields not working (#3247)

* Remove unanswered linkId from questionnaireResponse

so that default initial values for the linkId get picked from Questionnaire

* Apply patch changes from #3218

* Migrate Knowledge and Workflow SDK library versions (#3266)

* Update Code release process documentation

* Migrate Knowledge and Workflow SDK library versions

* Docs for P2P Sync (#3192)

* Docs for P2P Sync

* Update image correctly

* Update formatting

* cleanup text and fix image location

* Add links to references

* Update p2p documentation

---------

Co-authored-by: pld <peter@ona.io>
Co-authored-by: Benjamin Mwalimu <dubdabasoduba@gmail.com>
Co-authored-by: Francis Odhiambo <4540684+f-odhiambo@users.noreply.github.com>
Co-authored-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Fix sort and filter issues (#3254)

* Activate sorting for related resources

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Remove material3 dependencies

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Use all the provided register filter criteria

Previously only the filter criteria that were updated by content
from the Questionnaire fields were used.

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Set questionnaire submit button text via configuration

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Implement clear all action on register filter questionnaire

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Add more assertion on register filter data queries test

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

---------

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: Benjamin Mwalimu <dubdabasoduba@gmail.com>

* Fix filtering by integer

* Activate sorting for related resources

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Remove material3 dependencies

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Use all the provided register filter criteria

Previously only the filter criteria that were updated by content
from the Questionnaire fields were used.

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Set questionnaire submit button text via configuration

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Implement clear all action on register filter questionnaire

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Add more assertion on register filter data queries test

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

* Fix filter by number

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>

---------

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: Benjamin Mwalimu <dubdabasoduba@gmail.com>

* Add Encounter Participant to TransformSupportServices

* added structure-defnition resource-type in ConfigurationRegistry

* 🐛 [WIP] Adding the value set resolver

---------

Signed-off-by: Elly Kitoto <junkmailstoelly@gmail.com>
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Lentumunai-Mark <lentumunai.mark@students.jkuat.ac.ke>
Co-authored-by: L≡ZRS <12814349+LZRS@users.noreply.github.com>
Co-authored-by: Hamza Ahmed Khan <70560433+hamza-vd@users.noreply.github.com>
Co-authored-by: Hilary Baraka Egesa <hilpitome@gmail.com>
Co-authored-by: Simon Njoroge <snjoroge@ona.io>
Co-authored-by: Benjamin Mwalimu <dubdabasoduba@gmail.com>
Co-authored-by: Peter Lubell-Doughtie <peter@ona.io>
Co-authored-by: Elly Kitoto <junkmailstoelly@gmail.com>
Co-authored-by: Hamza Ahmed Khan <hamza.khan@venturedive.com>
Co-authored-by: Francis Odhiambo <4540684+f-odhiambo@users.noreply.github.com>
Co-authored-by: mapratama <muh.angga06@gmail.com>
Co-authored-by: Sebastian <36365043+SebaMutuku@users.noreply.github.com>
Co-authored-by: SebaMutuku <sebastian.muthiani@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lentumunai Mark <90028422+Lentumunai-Mark@users.noreply.github.com>
Co-authored-by: Roy <84201465+roywanyaga@users.noreply.github.com>
Co-authored-by: Owais <62104757+owais-vd@users.noreply.github.com>
Co-authored-by: Rachel Murabula <110402503+Raynafs@users.noreply.github.com>
Co-authored-by: Syed Owais Ali <syedowaisali@users.noreply.github.com>
Co-authored-by: owais-vd <owais.ali@venturedive.com>
Co-authored-by: Aleem Azhar <aleem.azhar@venturedive.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[New Feature] Add Related Entity Location Tag to newly created resources
5 participants