-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: handler api endpoint for querying settings * chore: seed signer data * feat: add signer to DecisionText * feat: save signer to decisionText * feat: ahjo signer frontend radio inputs * feat: send signer to Ahjo with decisionProposal * chore: add missing signer fixture for tests * test: select signer for ddecision proposal * chore: add missing validation for signer * fix: lint file and add check for existing property --------- Co-authored-by: Sampo Tawast <[email protected]>
- Loading branch information
Showing
26 changed files
with
359 additions
and
23 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
29 changes: 29 additions & 0 deletions
29
backend/benefit/applications/migrations/0088_ahjodecisiontext_signer_id_and_more.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,29 @@ | ||
# Generated by Django 4.2.11 on 2024-11-11 12:39 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("applications", "0087_alter_ahjodecisionproposaldraft_handler_role"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="ahjodecisiontext", | ||
name="signer_id", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=64, | ||
null=True, | ||
verbose_name="the ID of the signer", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="ahjodecisiontext", | ||
name="signer_name", | ||
field=models.TextField( | ||
blank=True, null=True, verbose_name="the name of the signer" | ||
), | ||
), | ||
] |
29 changes: 29 additions & 0 deletions
29
backend/benefit/applications/migrations/0089_ahjodecisionproposaldraft_signer_id_and_more.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,29 @@ | ||
# Generated by Django 4.2.11 on 2024-11-13 08:21 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("applications", "0088_ahjodecisiontext_signer_id_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="ahjodecisionproposaldraft", | ||
name="signer_id", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=64, | ||
null=True, | ||
verbose_name="the ID of the signer", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="ahjodecisionproposaldraft", | ||
name="signer_name", | ||
field=models.TextField( | ||
blank=True, null=True, verbose_name="the name of the signer" | ||
), | ||
), | ||
] |
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
Oops, something went wrong.