support disabling mentions on certain users

This commit is contained in:
Aubrey 2025-01-30 16:26:05 -06:00
parent 931d73a2da
commit 665ff35d6b
No known key found for this signature in database
2 changed files with 7 additions and 0 deletions

View file

@ -64,6 +64,10 @@
discord = lib.mkOption {
type = lib.types.str;
};
mentionUser = lib.mkOption {
type = lib.types.bool;
default = true;
};
};
};
config = lib.mkIf config.services.wanireminder.enable {

View file

@ -21,6 +21,9 @@ for (let user of config.users) {
content: message,
username: "WaniKani Reminder",
avatarURL: "https://pbs.twimg.com/profile_images/1213575248911552512/WP11ESTy_400x400.jpg",
allowedMentions: {
parse: user.mentionUser ? ["users"] : [],
}
})
}
}