-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added description for person * Update README.md * Add MSC * Add link to API explorer * Fix alt text * Rename path to search api so that RESTful and non-REST api's are not intermingled * Add CORS headers * Add cors headers to all requests - not just api * Adds swagger2excel output * parser for openapi * excel output of openapi * docker build run excel generation * Add description for contact * Add person search HEAD request * Remove 'old' file: DefaultAPI * Adds relationship API #7 * Adds search_person_supported implementation and front-end awareness * Remove ethnicity #12 * Rename api path /details/ to /detail/ for consistency #9 * Fix missing key on list * Fix liniting errors * Fix schema formatter crash on missing properties Co-authored-by: Sara Guerreiro de Sousa <[email protected]> Co-authored-by: Kaj Siebert <[email protected]>
- Loading branch information
1 parent
6d8f169
commit 46389a1
Showing
36 changed files
with
1,140 additions
and
167 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# FamilyContext.PersonWithRelationship | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **String** | | | ||
**firstName** | **String** | | | ||
**lastName** | **String** | | | ||
**dateOfBirth** | **Date** | | [optional] | ||
**gender** | **String** | The person's gender. Leave blank for 'unknown'. | [optional] | ||
**address** | **String** | | [optional] | ||
**relationship** | **String** | A description of the relationship. | [optional] | ||
**relationshipToId** | **String** | The ID of the individual this relationship refers to | [optional] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { searchPersonSupported } from "../services/featureService"; | ||
|
||
export const SET_PERSON_SEARCH_SUPPORTED = "SET_PERSON_SEARCH_SUPPORTED"; | ||
export const checkPersonSearch = () => async dispatch => { | ||
const supported = await searchPersonSupported(); | ||
return dispatch({ | ||
type: SET_PERSON_SEARCH_SUPPORTED, | ||
supported: supported, | ||
}); | ||
} |
Oops, something went wrong.