Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/raft-tech/TANF-app into …
Browse files Browse the repository at this point in the history
…3155-prioritized-errors
  • Loading branch information
elipe17 committed Oct 18, 2024
2 parents 50cda34 + 7811e8d commit 4fe4829
Show file tree
Hide file tree
Showing 34 changed files with 1,032 additions and 550 deletions.
6 changes: 6 additions & 0 deletions .circleci/build-and-test/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@
- /^release.*/
requires:
- secrets-check
- make_erd: # from ../util folder
filters:
branches:
only:
- develop
- master

build-and-test-backend:
when: << pipeline.parameters.build_and_test_backend >>
Expand Down
5 changes: 5 additions & 0 deletions .circleci/util/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
steps:
- checkout
- docker-compose-check
- docker-login
- run:
name: Run graph_models
command: |
Expand All @@ -13,5 +14,9 @@
fi
docker-compose run --rm web bash -c \
"./manage.py graph_models -a -g -o tdp_erd.png"
if [[ ! -f tdp_erd.png ]]; then
echo "Entity Relationship Diagram not found."
exit 1
fi
- store_artifacts:
path: tdrs-backend/tdp_erd.png
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ tasks:
upload-kibana-objs:
desc: Upload dashboards to Kibana server
cmds:
- curl -X POST localhost:5601/api/saved_objects/_import -H "kbn-xsrf: true" --form file=@tdrs-backend/tdpservice/search_indexes/kibana_saved_objs.ndjson
- 'curl -X POST localhost:5601/api/saved_objects/_import -H "kbn-xsrf: true" --form file=@tdrs-backend/tdpservice/search_indexes/kibana_saved_objs.ndjson'

create-network:
desc: Create the external network
Expand Down
120 changes: 0 additions & 120 deletions docs/Technical-Documentation/cloud-foundry-db-upgrade.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/Technical-Documentation/nexus-repo.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Now you will no longer have to enter the password when logging in.
## Local Docker Login
After logging into the `tanf-dev` space with the `cf` cli, execute the following commands to authenticate your local docker daemon
```
export NEXUS_DOCKER_PASSWORD=`cf service-key tanf-keys nexus-dev | tail -n +2 | jq .credentials.password`
export NEXUS_DOCKER_PASSWORD=`cf service-key tanf-keys nexus-dev | tail -n +2 | jq .password`
echo "$NEXUS_DOCKER_PASSWORD" | docker login https://tdp-docker.dev.raftlabs.tech -u tdp-dev --password-stdin
```

Expand Down
Binary file modified product-updates/img/error-reports/error-report.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
93 changes: 93 additions & 0 deletions product-updates/knowledge-center/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,99 @@ <h2 class="usa-card__heading" id="existing">Use an existing Login.gov Account</h

<h2>What's new in TDP</h2>


<h3 style="margin-top: 32px;">October 10th 2024 (v 3.6.4)</h3>
<h4 style="margin-top: 16px; color: #595959;">Added:</h4>
<ul class="usa-icon-list">
<li class="usa-icon-list__item" style="margin-top: 16px;">
<div class="usa-icon-list__icon text-ink">
<img src="../img/added.svg" aria-hidden="true" alt="" style="background-color: #d3ffcc; border-radius: 5px; width: 18px; height: 18px; position: relative; top: 2px; margin-right: 5px; margin-left: 5px;"/>
</div>
<div class="usa-icon-list__content">
<h5 class="usa-icon-list__title">
New Error Type Column Added to Error Report
</h5>
<p>A new column called "Error Type" has been added to error reports. This feature will help users quickly locate high-priority errors affecting file submission.</p>
<p>The new column categorizes four types of errors by their priority and impact on file status. Detailed guidance to filter high-priority errors along with further information on this update is available in the <a href="viewing-error-reports.html#interpreting-error-types">Knowledge Center.</a></p>

</div>
</li>

</ul>
<table class="usa-table">
<thead>
<tr>
<th scope="col">Error Type</th>
<th scope="col">Priority</th>
<th scope="col">Impact</th>
<th scope="col">File Status</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">File Pre-Check</th>
<td>
High
</td>
<td>
Some or all of the record(s) in the file are rejected
</td>
<td>
Rejected or Partially Accepted with errors
</td>

</tr>
<tr>
<th scope="row">Case Consistency</th>
<td>
High
</td>
<td>
Record(s) rejected
</td>
<td>
Partially accepted with errors
</td>
</tr>
<tr>
<th scope="row">Record Value Invalid</th>
<td>
Low
</td>
<td>
Record(s) accepted
</td>
<td>
Accepted with errors
</td>

<tr>
<th scope="row">Record Value Inconsistency</th>
<td>
Low
</td>
<td>
Record(s) accepted
</td>
<td>
Accepted with errors
</td>

</tr>

</tbody>
</table>
</ul>



<hr style="border: none;
height: 1px;
background: #000;
margin-top: 32px;
background: repeating-linear-gradient(90deg,#000,#000 6px,transparent 6px,transparent 12px);">


<h3 style="margin-top: 32px;">September 10th 2024 (v 3.6.0)</h3>
<h4 style="margin-top: 16px; color: #595959;">In Development:</h4>
<ul class="usa-icon-list">
Expand Down
Loading

0 comments on commit 4fe4829

Please sign in to comment.