-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/tnris org docs sgm notes (#68)
* new sgm_note field added to TnrisDocument model - boolean issue #62; serializers, viewsets, urls, models, forms edited; now available in api with endpoint - api/v1/tnris_org/sgm_note * comments and additional helper text added issue #62
- Loading branch information
John Haney
authored
Jan 31, 2020
1 parent
e1f7792
commit 81de6c5
Showing
6 changed files
with
59 additions
and
4 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
18 changes: 18 additions & 0 deletions
18
src/data_hub/tnris_org/migrations/0024_tnrisdocument_sgm_note.py
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 2.0.13 on 2020-01-31 17:42 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('tnris_org', '0023_tnrisgiocalendarevent_community_meeting_agenda_url'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='tnrisdocument', | ||
name='sgm_note', | ||
field=models.BooleanField(default=False, verbose_name='Solutions Group Note'), | ||
), | ||
] |
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