-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HOFF-659: Update NRM to use version of HOF that uses axios
- update hof version to use axios - remove request module in package.json - update notifications-node-client version to fix vulnerabilities - update knex version to fix vulnerabilities - amend node env for dev:api script in package.json - update yarn.lock - refactored code in save-form-session, resume-form-session, delete-form-session, are-you-sure and continue-report behaviours to use hof model instead of request - update icasework resolver image in kube/icasework-resolver.yml - amended some html files that were breaking the app due to govuk design updates in hof version containing axios update - update snyk ignore list - ignore acceptance test in drone on failure as test needs to be refactored to no longer need request - add PR template
- Loading branch information
1 parent
f746e25
commit 12f214b
Showing
24 changed files
with
7,106 additions
and
141 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<fieldset id="are-others-involved-details-fieldset" class="panel-indent"> | ||
{{#renderField}}are-others-involved-details{{/renderField}} | ||
<fieldset id="are-others-involved-details-fieldset" class="govuk-radios__conditional govuk-radios__conditional--hidden"> | ||
{{#textarea}}are-others-involved-details{{/textarea}} | ||
</fieldset> |
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,3 +1,3 @@ | ||
<fieldset id="does-pv-have-children-yes-fieldset" class="panel-indent"> | ||
{{#renderField}}does-pv-have-children-yes-amount{{/renderField}} | ||
{{#input-text}}does-pv-have-children-yes-amount{{/input-text}} | ||
</fieldset> |
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,3 +1,3 @@ | ||
<fieldset id="evidence-of-dishonesty-details-fieldset" class="panel-indent"> | ||
{{#renderField}}evidence-of-dishonesty-details{{/renderField}} | ||
{{#textarea}}evidence-of-dishonesty-details{{/textarea}} | ||
</fieldset> |
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,3 +1,3 @@ | ||
<fieldset id="other-exploitation-fieldset" class="panel-indent"> | ||
{{#renderField}}other-exploitation-details{{/renderField}} | ||
{{#textarea}}other-exploitation-details{{/textarea}} | ||
</fieldset> |
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,3 +1,3 @@ | ||
<fieldset id="pv-ho-reference-type-fieldset" class="panel-indent"> | ||
{{#renderField}}pv-ho-reference-type{{/renderField}} | ||
{{#input-text}}pv-ho-reference-type{{/input-text}} | ||
</fieldset> |
2 changes: 1 addition & 1 deletion
2
apps/nrm/views/partials/pv-interpreter-requirements-language.html
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,3 +1,3 @@ | ||
<fieldset id="pv-interpreter-requirements-language-fieldset" class="panel-indent"> | ||
{{#renderField}}pv-interpreter-requirements-language{{/renderField}} | ||
{{#input-text}}pv-interpreter-requirements-language{{/input-text}} | ||
</fieldset> |
2 changes: 1 addition & 1 deletion
2
apps/nrm/views/partials/pv-other-help-with-communication-aid.html
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,3 +1,3 @@ | ||
<fieldset id="pv-other-help-with-communication-aid-fieldset" class="panel-indent"> | ||
{{#renderField}}pv-other-help-with-communication-aid{{/renderField}} | ||
{{#input-text}}pv-other-help-with-communication-aid{{/input-text}} | ||
</fieldset> |
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,4 +1,4 @@ | ||
<fieldset id="yes-crime-reference-fieldset" class="panel-indent"> | ||
{{#renderField}}reported-to-police-police-forces{{/renderField}} | ||
{{#renderField}}reported-to-police-crime-reference{{/renderField}} | ||
{{#select}}reported-to-police-police-forces{{/select}} | ||
{{#input-text}}reported-to-police-crime-reference{{/input-text}} | ||
</fieldset> |
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,3 +1,3 @@ | ||
<fieldset id="someone-else-email-input-fieldset" class="panel-indent"> | ||
{{#renderField}}someone-else-email-input{{/renderField}} | ||
{{#input-text}}someone-else-email-input{{/input-text}} | ||
</fieldset> |
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,6 +1,6 @@ | ||
<fieldset id="someone-else-post-fieldset" class="panel-indent"> | ||
{{#renderField}}someone-else-street{{/renderField}} | ||
{{#renderField}}someone-else-town{{/renderField}} | ||
{{#renderField}}someone-else-county{{/renderField}} | ||
{{#renderField}}someone-else-postcode{{/renderField}} | ||
{{#input-text}}someone-else-street{{/input-text}} | ||
{{#input-text}}someone-else-town{{/input-text}} | ||
{{#input-text}}someone-else-county{{/input-text}} | ||
{{#input-text}}someone-else-postcode{{/input-text}} | ||
</fieldset> |
4 changes: 2 additions & 2 deletions
4
apps/nrm/views/partials/were-they-taken-somewhere-by-their-exploiter.html
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,3 +1,3 @@ | ||
<fieldset id="were-they-taken-somewhere-by-their-exploiter-details-fieldset" class="panel-indent"> | ||
{{#renderField}}were-they-taken-somewhere-by-their-exploiter-journey-details{{/renderField}} | ||
<fieldset id="were-they-taken-somewhere-by-their-exploiter-details-fieldset" class="govuk-radios__conditional govuk-radios__conditional--hidden" aria-hidden="false"> | ||
{{#textarea}}were-they-taken-somewhere-by-their-exploiter-journey-details{{/textarea}} | ||
</fieldset> |
Oops, something went wrong.