-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include dedup info in get stamp (#743)
* wip: testing v2 api * fix: handle failing tests and wrong value returned in in V2 api * fix: failing tests * Include dedup info in get stamp * update submit passport v2 test * update registry schema * remove submit passport call from v2 * set default for clashing stamps * adjust test dedup * fix data dump test * update lambda call * minor updates * update return message * add single function * update v2 tests * update handle_scoring * update response * update return data type * update tests * update tests passport * update passport tests * add api dedup test * minor updates * fix returned expiration date * add new flow for deduplication * update schema * update tests * pass expiration dates * update test stamp get score * update v2/aws_lambdas/tests/test_stamp_score_get.py * update tests * update test_passport_submission.py * update tests * adjust score tests * rename stamp expiration dates * modify clashing stamps * update schema * add clashing stamps in ret * update lambda test and score format * update test for dedup * update lifo tests * update test for return score format * update resposne schema & tests --------- Co-authored-by: Gerald Iakobinyi-Pich <nutrina9@gmail.com> Co-authored-by: Gerald Iakobinyi-Pich <gerald@gitcoin.co>
- Loading branch information
1 parent
2059071
commit d370986
Showing
18 changed files
with
989 additions
and
91 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Generated by Django 4.2.6 on 2024-11-28 20:07 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("registry", "0041_weightconfiguration_description"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="score", | ||
name="stamps", | ||
field=models.JSONField(blank=True, 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
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.