mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-25 10:19:06 +01:00
[mastodon-client] Code formatting pass
This commit is contained in:
parent
37b21f973f
commit
8a6a1cfc43
@ -361,8 +361,7 @@ export function apiAccountMastodon(router: Router): void {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
router.get("/v1/featured_tags",
|
router.get("/v1/featured_tags", async (ctx) => {
|
||||||
async (ctx) => {
|
|
||||||
const BASE_URL = `${ctx.protocol}://${ctx.hostname}`;
|
const BASE_URL = `${ctx.protocol}://${ctx.hostname}`;
|
||||||
const accessTokens = ctx.headers.authorization;
|
const accessTokens = ctx.headers.authorization;
|
||||||
const client = getClient(BASE_URL, accessTokens);
|
const client = getClient(BASE_URL, accessTokens);
|
||||||
@ -375,10 +374,8 @@ export function apiAccountMastodon(router: Router): void {
|
|||||||
ctx.status = 401;
|
ctx.status = 401;
|
||||||
ctx.body = e.response.data;
|
ctx.body = e.response.data;
|
||||||
}
|
}
|
||||||
},
|
});
|
||||||
);
|
router.get("/v1/followed_tags", async (ctx) => {
|
||||||
router.get("/v1/followed_tags",
|
|
||||||
async (ctx) => {
|
|
||||||
const BASE_URL = `${ctx.protocol}://${ctx.hostname}`;
|
const BASE_URL = `${ctx.protocol}://${ctx.hostname}`;
|
||||||
const accessTokens = ctx.headers.authorization;
|
const accessTokens = ctx.headers.authorization;
|
||||||
const client = getClient(BASE_URL, accessTokens);
|
const client = getClient(BASE_URL, accessTokens);
|
||||||
@ -391,8 +388,7 @@ export function apiAccountMastodon(router: Router): void {
|
|||||||
ctx.status = 401;
|
ctx.status = 401;
|
||||||
ctx.body = e.response.data;
|
ctx.body = e.response.data;
|
||||||
}
|
}
|
||||||
},
|
});
|
||||||
);
|
|
||||||
router.get("/v1/bookmarks", async (ctx) => {
|
router.get("/v1/bookmarks", async (ctx) => {
|
||||||
const BASE_URL = `${ctx.protocol}://${ctx.hostname}`;
|
const BASE_URL = `${ctx.protocol}://${ctx.hostname}`;
|
||||||
const accessTokens = ctx.headers.authorization;
|
const accessTokens = ctx.headers.authorization;
|
||||||
|
@ -60,7 +60,9 @@ export function apiStatusMastodon(router: Router): void {
|
|||||||
if (!body.media_ids) body.media_ids = undefined;
|
if (!body.media_ids) body.media_ids = undefined;
|
||||||
if (body.media_ids && !body.media_ids.length) body.media_ids = undefined;
|
if (body.media_ids && !body.media_ids.length) body.media_ids = undefined;
|
||||||
if (body.media_ids) {
|
if (body.media_ids) {
|
||||||
body.media_ids = (body.media_ids as string[]).map(p => convertId(p, IdType.CalckeyId));
|
body.media_ids = (body.media_ids as string[]).map((p) =>
|
||||||
|
convertId(p, IdType.CalckeyId),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
const { sensitive } = body;
|
const { sensitive } = body;
|
||||||
body.sensitive =
|
body.sensitive =
|
||||||
|
Loading…
Reference in New Issue
Block a user