all repos — stealth-developers @ 1af6d44502a1ec892925954c311fb0a2560f9bba

apps/bot/src/lib/permissions.ts (view raw)

 1
 2
 3
 4
 5
 6
import { getUserByDiscordId } from "@stealth-developers/db";

export const isModerator = async (id: string) => {
	const user = await getUserByDiscordId(id);
	return user?.moderator;
};