You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: lexicons/tools.ozone.moderation.defs.json
+36
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,9 @@
25
25
"#modEventAcknowledge",
26
26
"#modEventEscalate",
27
27
"#modEventMute",
28
+
"#modEventUnmute",
29
+
"#modEventMuteReporter",
30
+
"#modEventUnmuteReporter",
28
31
"#modEventEmail",
29
32
"#modEventResolveAppeal",
30
33
"#modEventDivert"
@@ -67,6 +70,9 @@
67
70
"#modEventAcknowledge",
68
71
"#modEventEscalate",
69
72
"#modEventMute",
73
+
"#modEventUnmute",
74
+
"#modEventMuteReporter",
75
+
"#modEventUnmuteReporter",
70
76
"#modEventEmail",
71
77
"#modEventResolveAppeal",
72
78
"#modEventDivert"
@@ -128,6 +134,10 @@
128
134
"type": "string",
129
135
"format": "datetime"
130
136
},
137
+
"muteReportingUntil": {
138
+
"type": "string",
139
+
"format": "datetime"
140
+
},
131
141
"lastReviewedBy": {
132
142
"type": "string",
133
143
"format": "did"
@@ -242,6 +252,10 @@
242
252
"comment": {
243
253
"type": "string"
244
254
},
255
+
"isReporterMuted": {
256
+
"type": "boolean",
257
+
"description": "Set to true if the reporter was muted from reporting at the time of the event. These reports won't impact the reviewState of the subject."
258
+
},
245
259
"reportType": {
246
260
"type": "ref",
247
261
"ref": "com.atproto.moderation.defs#reasonType"
@@ -300,6 +314,28 @@
300
314
}
301
315
}
302
316
},
317
+
"modEventMuteReporter": {
318
+
"type": "object",
319
+
"description": "Mute incoming reports from an account",
320
+
"required": ["durationInHours"],
321
+
"properties": {
322
+
"comment": { "type": "string" },
323
+
"durationInHours": {
324
+
"type": "integer",
325
+
"description": "Indicates how long the account should remain muted."
326
+
}
327
+
}
328
+
},
329
+
"modEventUnmuteReporter": {
330
+
"type": "object",
331
+
"description": "Unmute incoming reports from an account",
332
+
"properties": {
333
+
"comment": {
334
+
"type": "string",
335
+
"description": "Describe reasoning behind the reversal."
336
+
}
337
+
}
338
+
},
303
339
"modEventEmail": {
304
340
"type": "object",
305
341
"description": "Keep a log of outgoing email to a user",
0 commit comments