forked from HHS/TANF-app
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1755 - As a data analyst, I need to be able to upload SSP data files (#…
…2236) * added ssp boolean to stt model * changed stts and datafile models * made ssp editable * added radio buttons to frontend * send ssp to backend through drf * added frontent tests * removed comments, fixed radio button * change migrations * remove temp files * fixed test * linting * reorder ssp radios * Fixed db migrations. Added backend test * fixed serializer tests * removed redundant ssp in the model * changes for testing migration issue * updated db migrations * changed ssp and migration * make new migration * added ssp to populate * change ssp in migration only * fix file path * make ssp upeditable * update db migration order * new migrations * Changing populate_stts to be peek-ahead, always-update STT fields * Changing populate_stts to be peek-ahead, always-update STT fields * removing old request_access endpoint test * plz fix * add an irrelevant comment * rm comment * linting * linting * add frontend redux for fileType * use global file type state in post/get requests * support ssp in GET param * linting * fixed test * fixed REDIS_URI * add '-' to header * rm prints * cleaner if statement * spelin * rm stuffs * update quarter-month mapping for logentries * Adding our testfiles to gitignore and removing comments around filenames property. May update again soon * move file type filter logic to get_queryset * docstring * added test for Tribe datafile and moved Tribe logic to serializer * linting * removing print and logs Co-authored-by: mo sohani <[email protected]> Co-authored-by: abottoms-coder <[email protected]> Co-authored-by: Jan Timpe <[email protected]> Co-authored-by: Andrew <[email protected]> Co-authored-by: Pennington <[email protected]> Co-authored-by: jtimpe <[email protected]>
- Loading branch information
1 parent
cdc8d05
commit a0fd0b6
Showing
25 changed files
with
302 additions
and
154 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.15 on 2022-10-28 20:00 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('stts', '0006_alter_stt_filenames'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='stt', | ||
name='ssp', | ||
field=models.BooleanField(default=False, null=True), | ||
), | ||
] |
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.