-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add filter to only show published cases on /legal/ #3573
Comments
Spoke with Srini(Salient PM) about the legal system data transfers. Had a brief discussion about adding the new column |
Thanks @fecjjeng for adding Modified the Will continue to test once Salient inserts test data to |
ToDo##
|
Tested published/unpublished cases on my local env:
@lbeaufort really appreciate your help testing the published/unpublished cases with me. |
Salient is working on a new version of SMUR, the internal MUR management software. Users of this software need to be able to publish/unpublish a case (MUR/ADR/AF). Currently, when a user unpublishes a MUR, a hard delete is done in postgres. However, in order for the celery task to be able to detect an unpublished case and reload elasticsearch to reflect the change, we need to add an
is_published
flag to thefecmur.case
table, and only show published cases. Salient will update theis_published
andpg_update
date.Completion criteria
DB changes
"case"
table to addis_published
boolean column (Salient will update this data. Please make sure Salient updates thepg_update
field when they publish/unpublish the case.)fecmur.cases_with_parsed_case_serial_numbers_vw
to include the column so we can detect when cases are unpublishedPython changes:
pg_update
field)af_case
table) for published/unpublished casesThe text was updated successfully, but these errors were encountered: