summaryrefslogtreecommitdiffstats
path: root/ui/src/interfaces.ts
diff options
context:
space:
mode:
authorDessalines <happydooby@gmail.com>2019-04-20 00:24:59 -0700
committerDessalines <happydooby@gmail.com>2019-04-20 00:24:59 -0700
commit103a92d6b64701967a2eeaccf33d939106f129e1 (patch)
tree117ee3fad0961ebf7459c780ad361ff315c36c63 /ui/src/interfaces.ts
parentb25b1b6a0de25c536d58ae4ff5dbedc50b73d0d0 (diff)
More moderation fixed
Diffstat (limited to 'ui/src/interfaces.ts')
-rw-r--r--ui/src/interfaces.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/src/interfaces.ts b/ui/src/interfaces.ts
index 4a4ee643..8927a171 100644
--- a/ui/src/interfaces.ts
+++ b/ui/src/interfaces.ts
@@ -370,8 +370,8 @@ export interface PostForm {
updated?: number;
edit_id?: number;
creator_id: number;
- removed: boolean;
- locked: boolean;
+ removed?: boolean;
+ locked?: boolean;
reason?: string;
auth: string;
}
@@ -402,7 +402,7 @@ export interface CommentForm {
parent_id?: number;
edit_id?: number;
creator_id: number;
- removed: boolean;
+ removed?: boolean;
reason?: string;
auth: string;
}