parent
f195fa4ab9
commit
e3f151e230
25 changed files with 238 additions and 31 deletions
|
|
@ -70,6 +70,7 @@ export type UserDetailed = UserLite & {
|
|||
updatedAt: DateString | null;
|
||||
uri: string | null;
|
||||
url: string | null;
|
||||
notify: 'normal' | 'none';
|
||||
};
|
||||
|
||||
export type UserGroup = TODO;
|
||||
|
|
@ -233,7 +234,12 @@ export type Notification = {
|
|||
userId: User['id'];
|
||||
note: Note;
|
||||
} | {
|
||||
type: 'pollVote';
|
||||
type: 'note';
|
||||
user: User;
|
||||
userId: User['id'];
|
||||
note: Note;
|
||||
} | {
|
||||
type: 'pollEnded';
|
||||
user: User;
|
||||
userId: User['id'];
|
||||
note: Note;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue