added command to completely silently close a mod mail thread (no logging, no notification)

this is part of the mod mai logging feature, because without logging the normal closeSilently behaves the same way by default
This commit is contained in:
Sheldan
2020-05-16 11:06:48 +02:00
parent d5007e362b
commit cd80d27795
10 changed files with 81 additions and 6 deletions

View File

@@ -18,4 +18,5 @@ public interface ModMailThreadService {
void relayMessageToModMailThread(ModMailThread modMailThread, Message message);
void relayMessageToDm(ModMailThread modMailThread, String text, Message message, Boolean anonymous, MessageChannel feedBack);
void closeModMailThread(ModMailThread modMailThread, MessageChannel feedBack, String note, Boolean notifyUser);
void closeModMailThread(ModMailThread modMailThread, MessageChannel feedBack, String note, Boolean notifyUser, Boolean logThread);
}