From 893b3f6cb1804c23a869f0368cda5319b68b4e02 Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Thu, 12 Aug 2021 20:43:03 +0200 Subject: [PATCH] Document ban webhook signal --- core/include/server.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/core/include/server.h b/core/include/server.h index 8ebd5de..1065d53 100644 --- a/core/include/server.h +++ b/core/include/server.h @@ -260,7 +260,14 @@ class Server : public QObject { */ void modcallWebhookRequest(const QString& f_name, const QString& f_area, const QString& f_reason, const QQueue& f_buffer); - + /** + * @brief Sends a ban webhook request, emitted by AOClient::cmdBan + * @param f_ipid The IPID of the banned client. + * @param f_moderator The moderator who issued the ban. + * @param f_duration The duration of the ban in a human readable format. + * @param f_reason The reason for the ban. + * @param f_banID The ID of the issued ban. + */ void banWebhookRequest(const QString& f_ipid, const QString& f_moderator, const QString& f_duration, const QString& f_reason, const int& f_banID); private: