diff --git a/project.task.yaml b/project.task.yaml index 5d7e3c7..2c8feab 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -1,7 +1,8 @@ tasks: -- extract private_key_hex in webpush.py +- extract private_key_hex in py-push-server webpush.py +- lock down regenerate_vapid endpoint (so only we admins can do it on demand) - 40 notifications : - push, where we trigger a ServiceWorker(?) in the app to reach out and check for new data assignee:matthew @@ -13,8 +14,6 @@ tasks: - .1 when creating a plan, select location and then make sure you can deselect on Android - .5 fix where user 0 sees no txns from user 1 on contacts page but sees them on list page - .1 remove the logic to exclude beforeId in list of plans after server has commit 26b25af605e715600d4f12b6416ed9fd7142d164 assignee:trent -- .2 in SeedBackupView, don't load the mnemonic and keep it in memory; only load it when they click "show" -- fix cert generation (since it didn't happen automatically for Nov 30) - Discuss whether the remaining tasks are worthwhile before MVP release. @@ -33,6 +32,8 @@ tasks: - allow download of each VC (to show that they can actually own their data) - allow some gives even if they aren't registered - switch some checks for activeDid to check for isRegistered +- .2 in SeedBackupView, don't load the mnemonic and keep it in memory; only load it when they click "show" +- .5 fix cert generation (since it didn't happen automatically for Nov 30) - contacts v+ : - 01 Import all the non-sensitive data (ie. contacts & settings). diff --git a/src/views/ContactQRScanShowView.vue b/src/views/ContactQRScanShowView.vue index 6a9f236..15870ea 100644 --- a/src/views/ContactQRScanShowView.vue +++ b/src/views/ContactQRScanShowView.vue @@ -100,7 +100,7 @@ export default class ContactQRScanShow extends Vue { if (!identity) { throw new Error( - "Attempted to load Give records with no identity available.", + "Attempted to show contact info with no identity available.", ); } return identity;