allow tokens to limit a user's rank

This commit is contained in:
Hazelnoot 2025-06-21 09:46:31 -04:00
parent a4c816d07c
commit 70b85e5215
8 changed files with 72 additions and 4 deletions

View file

@ -26379,6 +26379,8 @@ export type operations = {
iconUrl?: string | null;
permission: string[];
grantees?: string[];
/** @enum {string|null} */
rank?: 'admin' | 'mod' | 'user';
};
};
};