forked from pinks/eris
1
0
Fork 0

fix: withUser -> withAdmin

This commit is contained in:
nameless 2023-11-09 23:21:21 +00:00
parent f678324889
commit 2aada6ffbc
1 changed files with 6 additions and 6 deletions

View File

@ -109,12 +109,12 @@ export const adminsRoute = createPathFilter({
}, },
}, },
async ({ params, query }) => { async ({ params, query }) => {
const deletedAdminEntry = await adminStore.getById(params.adminId!); return withAdmin(query, async (chat) => {
if (!deletedAdminEntry) { const deletedAdminEntry = await adminStore.getById(params.adminId!);
return { status: 404, body: { type: "text/plain", data: `Admin not found` } }; if (!deletedAdminEntry) {
} return { status: 404, body: { type: "text/plain", data: `Admin not found` } };
const deletedAdminUser = await getUser(deletedAdminEntry.value.tgUserId); }
return withUser(query, async (chat) => { const deletedAdminUser = await getUser(deletedAdminEntry.value.tgUserId);
await deletedAdminEntry.delete(); await deletedAdminEntry.delete();
info(`User ${chat.first_name} demoted user ${deletedAdminUser.first_name} from admin`); info(`User ${chat.first_name} demoted user ${deletedAdminUser.first_name} from admin`);
return { return {