support threads
This commit is contained in:
parent
665ff35d6b
commit
f9d800be37
|
@ -50,6 +50,9 @@
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
description = "The webhook to post the messages to";
|
description = "The webhook to post the messages to";
|
||||||
};
|
};
|
||||||
|
threadId = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
};
|
||||||
users =
|
users =
|
||||||
lib.mkOption {
|
lib.mkOption {
|
||||||
type = lib.types.listOf lib.types.attrs;
|
type = lib.types.listOf lib.types.attrs;
|
||||||
|
|
1
index.js
1
index.js
|
@ -19,6 +19,7 @@ for (let user of config.users) {
|
||||||
|
|
||||||
await webhook.send({
|
await webhook.send({
|
||||||
content: message,
|
content: message,
|
||||||
|
threadId: config.threadId,
|
||||||
username: "WaniKani Reminder",
|
username: "WaniKani Reminder",
|
||||||
avatarURL: "https://pbs.twimg.com/profile_images/1213575248911552512/WP11ESTy_400x400.jpg",
|
avatarURL: "https://pbs.twimg.com/profile_images/1213575248911552512/WP11ESTy_400x400.jpg",
|
||||||
allowedMentions: {
|
allowedMentions: {
|
||||||
|
|
Loading…
Reference in a new issue