diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-10 16:30:14 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-10 16:30:14 -0600 |
commit | d3707f30e30bb717e95b27cc83a1121815b475b5 (patch) | |
tree | 57fcb61e9e937949526713a778e171a6676c9acf /src/state/models/post-thread-view.ts | |
parent | ecf56729b0da535f1d0b794268c7856836e76bd6 (diff) | |
download | voidsky-d3707f30e30bb717e95b27cc83a1121815b475b5.tar.zst |
Implement scene invitation and membership controls
Diffstat (limited to 'src/state/models/post-thread-view.ts')
-rw-r--r-- | src/state/models/post-thread-view.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/state/models/post-thread-view.ts b/src/state/models/post-thread-view.ts index 7a735de03..385aa2e8e 100644 --- a/src/state/models/post-thread-view.ts +++ b/src/state/models/post-thread-view.ts @@ -31,7 +31,12 @@ export class PostThreadViewPostModel implements GetPostThread.Post { // data uri: string = '' cid: string = '' - author: GetPostThread.User = {did: '', handle: '', displayName: ''} + author: GetPostThread.User = { + did: '', + handle: '', + displayName: '', + declaration: {cid: '', actorType: ''}, + } record: Record<string, unknown> = {} embed?: | GetPostThread.RecordEmbed |