support disabling mentions on certain users
This commit is contained in:
parent
931d73a2da
commit
665ff35d6b
|
@ -64,6 +64,10 @@
|
||||||
discord = lib.mkOption {
|
discord = lib.mkOption {
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
};
|
};
|
||||||
|
mentionUser = lib.mkOption {
|
||||||
|
type = lib.types.bool;
|
||||||
|
default = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
config = lib.mkIf config.services.wanireminder.enable {
|
config = lib.mkIf config.services.wanireminder.enable {
|
||||||
|
|
3
index.js
3
index.js
|
@ -21,6 +21,9 @@ for (let user of config.users) {
|
||||||
content: message,
|
content: message,
|
||||||
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: {
|
||||||
|
parse: user.mentionUser ? ["users"] : [],
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue