diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-10 18:38:05 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-10 18:38:05 -0800 |
commit | 64c9d94476e29724243c6a6488ba4ce41ce24114 (patch) | |
tree | e60929fd529cf81fd32318a98acfe795025878c1 /adenosine-pds/src/web.rs | |
parent | db603c1fa18b19ed220e3ce18383ce1d15117bcc (diff) | |
download | adenosine-64c9d94476e29724243c6a6488ba4ce41ce24114.tar.gz adenosine-64c9d94476e29724243c6a6488ba4ce41ce24114.zip |
pds: basic/partial post thread implementation
Diffstat (limited to 'adenosine-pds/src/web.rs')
-rw-r--r-- | adenosine-pds/src/web.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/adenosine-pds/src/web.rs b/adenosine-pds/src/web.rs index 4432566..98af87e 100644 --- a/adenosine-pds/src/web.rs +++ b/adenosine-pds/src/web.rs @@ -40,7 +40,7 @@ pub struct ThreadView { pub did: Did, pub collection: Nsid, pub tid: Tid, - pub thread: Vec<ThreadItem>, + pub post: ThreadItem, } #[derive(Template)] |