Properly implement queries

This commit is contained in:
2022-08-03 07:20:30 +01:00
parent 1d2f37f588
commit 6af8e94336
7 changed files with 31 additions and 9 deletions

View File

@@ -220,6 +220,11 @@ urlpatterns = [
ThresholdIRCSendMessage.as_view(),
name="threshold_irc_msg",
),
path(
"manage/threshold/irc/msg/<str:net>/<int:num>/<str:channel>/<str:nick>/",
ThresholdIRCSendMessage.as_view(),
name="threshold_irc_msg",
),
##
path("api/chans/", ThresholdChans.as_view(), name="chans"),
path("api/users/", ThresholdUsers.as_view(), name="users"),