mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-22 20:31:12 +00:00
Updating remove_or_restore_data field.
This commit is contained in:
parent
869f8048df
commit
0b5b463e95
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ export interface BanFromCommunity {
|
||||||
community_id: CommunityId;
|
community_id: CommunityId;
|
||||||
person_id: PersonId;
|
person_id: PersonId;
|
||||||
ban: boolean;
|
ban: boolean;
|
||||||
remove_data?: boolean;
|
remove_or_restore_data?: boolean;
|
||||||
reason?: string;
|
reason?: string;
|
||||||
expires?: number;
|
expires?: number;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ import type { PersonId } from "./PersonId";
|
||||||
export interface BanPerson {
|
export interface BanPerson {
|
||||||
person_id: PersonId;
|
person_id: PersonId;
|
||||||
ban: boolean;
|
ban: boolean;
|
||||||
remove_data?: boolean;
|
remove_or_restore_data?: boolean;
|
||||||
reason?: string;
|
reason?: string;
|
||||||
expires?: number;
|
expires?: number;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue