Enable sending IRC messages from context modal

This commit is contained in:
2022-08-03 07:20:30 +01:00
parent c012792c42
commit c9a17a6fa4
8 changed files with 84 additions and 26 deletions

View File

@@ -41,6 +41,7 @@ from core.views.manage.threshold.irc import (
ThresholdIRCNetworkRelayStatus,
ThresholdIRCNetworks,
ThresholdIRCOverviewAlerts,
ThresholdIRCSendMessage,
ThresholdIRCStats,
)
@@ -214,6 +215,11 @@ urlpatterns = [
ThresholdIRCNetworkActionsList.as_view(),
name="threshold_irc_network_actions_list",
),
path(
"manage/threshold/irc/msg/<str:net>/<int:num>/<str:channel>/",
ThresholdIRCSendMessage.as_view(),
name="threshold_irc_msg",
),
##
path("api/chans/", ThresholdChans.as_view(), name="chans"),
path("api/users/", ThresholdUsers.as_view(), name="users"),