Use past-tense for some n-tag values

This commit is contained in:
Alex Gleason
2024-06-09 11:26:57 -05:00
parent 8802cbd779
commit 594f37ea33
3 changed files with 6 additions and 6 deletions

View File

@@ -107,13 +107,13 @@ const adminActionController: AppController = async (c) => {
n.sensitive = true;
}
if (data.type === 'disable') {
n.disable = true;
n.disabled = true;
}
if (data.type === 'silence') {
n.silence = true;
n.silenced = true;
}
if (data.type === 'suspend') {
n.suspend = true;
n.suspended = true;
}
await updateUser(authorId, n, c);