Browse Source

refine tasks & an error message

kb/add-usage-guide
Trent Larson 10 months ago
parent
commit
276d8b2f19
  1. 7
      project.task.yaml
  2. 2
      src/views/ContactQRScanShowView.vue

7
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).

2
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;

Loading…
Cancel
Save