(post_id -> message_id), (user_post_id -> user_message_id)

This commit is contained in:
Desmond Grealy
2022-12-30 17:31:09 -08:00
parent 5243270212
commit 5b787b8ad7
2 changed files with 3 additions and 3 deletions
@@ -62,7 +62,7 @@ const handler = async (req, res) => {
"Content-Type": "application/json",
},
body: JSON.stringify({
post_id: registeredTask.id,
message_id: registeredTask.id,
}),
});
const ack = await ackRes.json();
+2 -2
View File
@@ -52,8 +52,8 @@ const handler = async (req, res) => {
display_name: token.name || token.email,
auth_method: "local",
},
post_id: id,
user_post_id: interaction.id,
message_id: id,
user_message_id: interaction.id,
...content,
}),
});