/** * Account utilities * * @author Pierre Hubert */ import { AccountHelper } from "../helpers/AccountHelper"; export function canManageAdmins(): boolean { return AccountHelper.currentAccount.roles.includes("manage_admins"); }