Updating remove_or_restore_data field.

This commit is contained in:
Dessalines 2024-06-18 13:28:36 -04:00
parent 869f8048df
commit 0b5b463e95
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ export interface BanFromCommunity {
community_id: CommunityId;
person_id: PersonId;
ban: boolean;
remove_data?: boolean;
remove_or_restore_data?: boolean;
reason?: string;
expires?: number;
}

View file

@ -4,7 +4,7 @@ import type { PersonId } from "./PersonId";
export interface BanPerson {
person_id: PersonId;
ban: boolean;
remove_data?: boolean;
remove_or_restore_data?: boolean;
reason?: string;
expires?: number;
}