feat: add slowmode to audit log

Signed-off-by: Zomatree <me@zomatree.live>
This commit is contained in:
Zomatree
2026-06-25 00:02:22 +01:00
parent f86709837e
commit 1de91875c3

View File

@@ -718,6 +718,7 @@ impl Channel {
role_permissions, role_permissions,
nsfw, nsfw,
voice, voice,
slowmode,
.. ..
} => { } => {
if partial.name.is_some() { if partial.name.is_some() {
@@ -753,6 +754,10 @@ impl Channel {
if partial.voice.is_some() || remove.contains(&FieldsChannel::Voice) { if partial.voice.is_some() || remove.contains(&FieldsChannel::Voice) {
before.voice = voice.clone(); before.voice = voice.clone();
}; };
if partial.slowmode.is_some() {
before.slowmode = *slowmode;
}
} }
} }