Skip to content

Commit

Permalink
Scaffolded notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Apr 30, 2024
1 parent 1b02848 commit 343a894
Show file tree
Hide file tree
Showing 6 changed files with 3,370 additions and 548 deletions.
2 changes: 2 additions & 0 deletions dnas/plenty/dna.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
dnaManifest = ./workdir/dna.yaml;
holochain = inputs'.holochain;
zomes = {
notifications_integrity = inputs'.notifications.packages.notifications_integrity;
notifications = inputs'.notifications.packages.notifications;
file_storage_integrity = inputs'.file-storage.packages.file_storage_integrity;
file_storage = inputs'.file-storage.packages.file_storage;
# Include here the zome packages for this DNA, e.g.:
Expand Down
82 changes: 46 additions & 36 deletions dnas/plenty/workdir/dna.yaml
Original file line number Diff line number Diff line change
@@ -1,43 +1,53 @@
---
manifest_version: "1"
manifest_version: '1'
name: plenty
integrity:
network_seed: ~
properties: ~
network_seed: null
properties: null
origin_time: 1712757789015560
zomes:
- name: profiles_integrity
hash: null
bundled: <NIX_PACKAGE>
dependencies: null
dylib: null
- name: file_storage_integrity
hash: null
bundled: <NIX_PACKAGE>
dependencies: null
dylib: null
- name: households_integrity
hash: null
bundled: ../../../target/wasm32-unknown-unknown/release/households_integrity.wasm
dependencies: null
dylib: null
- name: notifications_integrity
hash: null
bundled: <NIX_PACKAGE>
dependencies: null
dylib: null
coordinator:
zomes:
- name: profiles
hash: null
bundled: <NIX_PACKAGE>
dependencies:
- name: profiles_integrity
hash: ~
bundled: "<NIX_PACKAGE>"
dependencies: ~
dylib: ~
dylib: null
- name: file_storage
hash: null
bundled: <NIX_PACKAGE>
dependencies:
- name: file_storage_integrity
hash: ~
bundled: "<NIX_PACKAGE>"
dependencies: ~
dylib: ~
dylib: null
- name: households
hash: null
bundled: ../../../target/wasm32-unknown-unknown/release/households.wasm
dependencies:
- name: households_integrity
hash: ~
bundled: "../../../target/wasm32-unknown-unknown/release/households_integrity.wasm"
dependencies: ~
dylib: ~
coordinator:
zomes:
- name: profiles
hash: ~
bundled: "<NIX_PACKAGE>"
dependencies:
- name: profiles_integrity
dylib: ~
- name: file_storage
hash: ~
bundled: "<NIX_PACKAGE>"
dependencies:
- name: file_storage_integrity
dylib: ~
- name: households
hash: ~
bundled: "../../../target/wasm32-unknown-unknown/release/households.wasm"
dependencies:
- name: households_integrity
dylib: ~
dylib: null
- name: notifications
hash: null
bundled: <NIX_PACKAGE>
dependencies:
- name: notifications_integrity
dylib: null
Loading

0 comments on commit 343a894

Please sign in to comment.