diff options
author | bryan newbold <bnewbold@robocracy.org> | 2023-08-20 19:56:22 -0700 |
---|---|---|
committer | bryan newbold <bnewbold@robocracy.org> | 2023-08-20 19:56:22 -0700 |
commit | 23416af782a179a658711e958e977e19ae97067b (patch) | |
tree | 09e605dbd105c0628f6614e421c0dd43bb8ce3dc /adenosine-pds/src/web.rs | |
parent | cc1dea6ea34260201c1df09959c7c4566d16d918 (diff) | |
download | adenosine-23416af782a179a658711e958e977e19ae97067b.tar.gz adenosine-23416af782a179a658711e958e977e19ae97067b.zip |
many updates from spring 2023 lex refactor
Diffstat (limited to 'adenosine-pds/src/web.rs')
-rw-r--r-- | adenosine-pds/src/web.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/adenosine-pds/src/web.rs b/adenosine-pds/src/web.rs index fc75a93..80e6f15 100644 --- a/adenosine-pds/src/web.rs +++ b/adenosine-pds/src/web.rs @@ -29,8 +29,8 @@ pub struct AboutView { pub struct AccountView { pub domain: String, pub did: Did, - pub profile: app_bsky::ProfileView, - pub feed: Vec<app_bsky::FeedPostView>, + pub profile: app_bsky::ProfileViewDetailed, + pub feed: Vec<app_bsky::FeedViewPost>, } #[derive(Template)] @@ -40,7 +40,7 @@ pub struct ThreadView { pub did: Did, pub collection: Nsid, pub tid: Tid, - pub post: app_bsky::ThreadPostView, + pub post: app_bsky::ThreadViewPost, } #[derive(Template)] |