add: status get endpoints to masto api

This commit is contained in:
Mar0xy 2023-09-24 16:14:50 +02:00
parent 55e85fe1c1
commit 7c3f3390b4
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828
2 changed files with 136 additions and 0 deletions

View file

@ -750,6 +750,16 @@ export class MastodonApiServerService {
//#endregion
//#region Status
const NoteEndpoint = new apiStatusMastodon(fastify);
// GET Endpoints
NoteEndpoint.getStatus();
NoteEndpoint.getContext();
NoteEndpoint.getHistory();
NoteEndpoint.getReblogged();
NoteEndpoint.getFavourites();
NoteEndpoint.getMedia();
NoteEndpoint.getPoll();
//#endregion
done();