-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from bcgov/feat/get-in-person-visits
WIP: GET In Person Child / Youth Visits
- Loading branch information
Showing
40 changed files
with
954 additions
and
187 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -77,6 +77,14 @@ jobs: | |
value: ${{ secrets.APS_NAMESPACE }} | ||
commitChange: false | ||
|
||
- name: 'YAML poke: Set build number' | ||
uses: fjogeleit/[email protected] | ||
with: | ||
valueFile: 'helm/values.yaml' | ||
propertyPath: 'vpiAppBuildLabel.version' | ||
value: "${{ github.ref_name }}-${{ github.run_number }}" | ||
commitChange: false | ||
|
||
- name: Authenticate with OpenShift | ||
uses: redhat-actions/oc-login@v1 | ||
with: | ||
|
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 |
---|---|---|
|
@@ -20,3 +20,6 @@ affinity: {} | |
|
||
aps: | ||
namespace: '<set by CI/CD>' | ||
|
||
vpiAppBuildLabel: | ||
version: '<set by CI/CD>' |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
const VIEW_MODE = 'Catalog'; | ||
const CHILD_LINKS = 'None'; | ||
const CONTENT_TYPE = 'application/json'; | ||
const PAGINATION = 'N'; | ||
|
||
const idRegex = /[0-9\-A-Za-z]+/; | ||
|
||
export { VIEW_MODE, CHILD_LINKS, CONTENT_TYPE, idRegex }; | ||
export { VIEW_MODE, CHILD_LINKS, CONTENT_TYPE, PAGINATION, idRegex }; |
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,9 @@ | ||
const baseUrlEnvVarName = 'UPSTREAM_BASE_URL'; | ||
const supportNetworkEndpointEnvVarName = 'SUPPORT_NETWORK_ENDPOINT'; | ||
const inPersonVisitsEndpointEnvVarName = 'IN_PERSON_VISITS_ENDPOINT'; | ||
|
||
export { | ||
baseUrlEnvVarName, | ||
supportNetworkEndpointEnvVarName, | ||
inPersonVisitsEndpointEnvVarName, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.