-
Notifications
You must be signed in to change notification settings - Fork 87
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 #7126 from opengovsg/release_v6.112.0
build: release v6.112.0
- Loading branch information
Showing
12 changed files
with
297 additions
and
19 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "FormSG", | ||
"description": "Form Manager for Government", | ||
"version": "6.111.0", | ||
"version": "6.112.0", | ||
"homepage": "https://form.gov.sg", | ||
"authors": [ | ||
"FormSG <[email protected]>" | ||
|
@@ -152,6 +152,7 @@ | |
"uid-generator": "^2.0.0", | ||
"ulid": "^2.3.0", | ||
"uuid": "^9.0.0", | ||
"uuid-by-string": "^4.0.0", | ||
"validator": "^13.7.0", | ||
"web-streams-polyfill": "^3.2.1", | ||
"whatwg-fetch": "^3.6.2", | ||
|
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,39 @@ | ||
import convict, { Schema } from 'convict' | ||
|
||
export interface IWogaa { | ||
wogaaSecretKey: string | ||
wogaaStartEndpoint: string | ||
wogaaSubmitEndpoint: string | ||
wogaaFeedbackEndpoint: string | ||
} | ||
|
||
const wogaaSchema: Schema<IWogaa> = { | ||
wogaaSecretKey: { | ||
doc: 'Wogaa shared secret key', | ||
format: String, | ||
default: '', | ||
env: 'WOGAA_SECRET_KEY', | ||
}, | ||
wogaaStartEndpoint: { | ||
doc: 'Wogaa endpoint when a form is loaded', | ||
format: String, | ||
default: '', | ||
env: 'WOGAA_START_ENDPOINT', | ||
}, | ||
wogaaSubmitEndpoint: { | ||
doc: 'Wogaa endpoint when a form is loaded', | ||
format: String, | ||
default: '', | ||
env: 'WOGAA_SUBMIT_ENDPOINT', | ||
}, | ||
wogaaFeedbackEndpoint: { | ||
doc: 'Wogaa endpoint when a form is loaded', | ||
format: String, | ||
default: '', | ||
env: 'WOGAA_FEEDBACK_ENDPOINT', | ||
}, | ||
} | ||
|
||
export const wogaaConfig = convict(wogaaSchema) | ||
.validate({ allowed: 'strict' }) | ||
.getProperties() |
Oops, something went wrong.