We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa77d5 commit 34ac0bfCopy full SHA for 34ac0bf
backend/src/api/guilds/importExport.ts
@@ -35,7 +35,7 @@ const caseData = z.object({
35
is_hidden: z.boolean(),
36
pp_id: z.nullable(z.string()),
37
pp_name: z.nullable(z.string()),
38
-
+ log_message_id: z.string().optional(),
39
notes: z.array(caseNoteData),
40
});
41
@@ -168,7 +168,7 @@ export function initGuildsImportExportAPI(guildRouter: express.Router) {
168
is_hidden: theCase.is_hidden,
169
pp_id: theCase.pp_id,
170
pp_name: theCase.pp_name,
171
+ log_message_id: theCase.log_message_id ?? undefined,
172
notes: theCase.notes.map((note) => ({
173
mod_id: note.mod_id,
174
mod_name: note.mod_name,
0 commit comments