There was an error while loading. Please reload this page.
1 parent b42b2a8 commit 94e3cd3Copy full SHA for 94e3cd3
readme.ts
@@ -67,6 +67,7 @@ export type Content =
67
| Privatable<AboutContent>
68
| Privatable<BlogContent>
69
| Privatable<AliasContent>
70
+ | Privatable<GatheringContent>
71
| null;
72
73
export interface PostContent {
@@ -134,6 +135,12 @@ export interface AliasContent {
134
135
room?: FeedId;
136
}
137
138
+export interface GatheringContent {
139
+ type: 'gathering',
140
+ progenitor?: MsgId // (optional) the thing that spawned this gathering
141
+ mentions?: Array<FeedId>, // (optional) people to notify
142
+}
143
+
144
export interface About {
145
name?: string;
146
description?: string;
0 commit comments