feature(backend): ユーザー統計表示機能の復活 (MisskeyIO#258)

This commit is contained in:
まっちゃとーにゅ
2023-11-24 03:26:58 +09:00
committed by GitHub
parent 84a7f12e7f
commit 114c7fe6b3
8 changed files with 401 additions and 1 deletions

View File

@@ -2273,6 +2273,10 @@ export type Endpoints = {
};
};
};
'users/stats': {
req: TODO;
res: TODO;
};
'fetch-rss': {
req: {
url: string;

View File

@@ -644,7 +644,7 @@ export type Endpoints = {
$default: UserDetailed;
};
}; };
'users/stats': { req: TODO; res: TODO; };
// fetching external data
'fetch-rss': { req: { url: string; }; res: TODO; };
'fetch-external-resources': {