ability to ban and unban users

This commit is contained in:
jackiettran
2026-01-07 00:39:20 -05:00
parent 1203fb7996
commit b56e031ee5
13 changed files with 919 additions and 5 deletions

View File

@@ -33,6 +33,11 @@ export interface User {
stripeConnectedAccountId?: string;
addresses?: Address[];
itemRequestNotificationRadius?: number;
// Ban-related fields (only visible to admins)
isBanned?: boolean;
bannedAt?: string;
bannedBy?: string;
banReason?: string;
}
export interface Message {