Implement deleting relays
This commit is contained in:
10
app/urls.py
10
app/urls.py
@@ -26,10 +26,11 @@ from core.views.callbacks import Callback
|
||||
from core.views.manage.threshold.irc import (
|
||||
ThresholdIRCAliases,
|
||||
ThresholdIRCNetworkActions,
|
||||
ThresholdIRCNetworkActionsAddRelay,
|
||||
ThresholdIRCNetworkActionsRelay,
|
||||
ThresholdIRCNetworkChannels,
|
||||
ThresholdIRCNetworkInfo,
|
||||
ThresholdIRCNetworkInfoEdit,
|
||||
ThresholdIRCNetworkRelayDel,
|
||||
ThresholdIRCNetworkRelays,
|
||||
ThresholdIRCNetworkRelayStatus,
|
||||
ThresholdIRCNetworks,
|
||||
@@ -123,6 +124,11 @@ urlpatterns = [
|
||||
ThresholdIRCNetworkRelays.as_view(),
|
||||
name="threshold_irc_network_relays",
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/network/<str:net>/<int:num>/",
|
||||
ThresholdIRCNetworkRelayDel.as_view(),
|
||||
name="threshold_irc_network_relay_del",
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/network/<str:net>/<int:num>/<int:status>/",
|
||||
ThresholdIRCNetworkRelayStatus.as_view(),
|
||||
@@ -156,7 +162,7 @@ urlpatterns = [
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/network/actions/<str:net>/",
|
||||
ThresholdIRCNetworkActionsAddRelay.as_view(),
|
||||
ThresholdIRCNetworkActionsRelay.as_view(),
|
||||
name="threshold_irc_network_actions_add_relay",
|
||||
),
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user