Use JSON for sending messages

This commit is contained in:
2022-08-14 16:45:48 +01:00
parent 555bcb4c09
commit e7b7695efd
4 changed files with 17 additions and 11 deletions

View File

@@ -253,12 +253,12 @@ urlpatterns = [
name="threshold_irc_network_list",
),
path(
"manage/threshold/irc/msg/<str:net>/<int:num>/<str:channel>/",
"manage/threshold/irc/msg/<str:net>/<int:num>/",
ThresholdIRCSendMessage.as_view(),
name="threshold_irc_msg",
),
path(
"manage/threshold/irc/msg/<str:net>/<int:num>/<str:channel>/<str:nick>/",
"manage/threshold/irc/msg/<str:net>/<int:num>/<str:nick>/",
ThresholdIRCSendMessage.as_view(),
name="threshold_irc_msg",
),