upd: change the way likes get handled
This commit is contained in:
parent
5af274ef0a
commit
a3fd51d6e0
8 changed files with 94 additions and 37 deletions
|
@ -544,6 +544,7 @@ export type Endpoints = {
|
|||
'notes/reactions': { req: { noteId: Note['id']; type?: string | null; limit?: number; }; res: NoteReaction[]; };
|
||||
'notes/reactions/create': { req: { noteId: Note['id']; reaction: string; }; res: null; };
|
||||
'notes/reactions/delete': { req: { noteId: Note['id']; }; res: null; };
|
||||
'notes/like': { req: { noteId: Note['id']; override: string | null; }; res: null; };
|
||||
'notes/renotes': { req: { limit?: number; sinceId?: Note['id']; untilId?: Note['id']; noteId: Note['id']; }; res: Note[]; };
|
||||
'notes/replies': { req: { limit?: number; sinceId?: Note['id']; untilId?: Note['id']; noteId: Note['id']; }; res: Note[]; };
|
||||
'notes/search-by-tag': { req: TODO; res: TODO; };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue