Implement button to enable authentication for relay

This commit is contained in:
2022-08-13 22:25:42 +01:00
parent d3dd070db0
commit 985705dfa4
4 changed files with 50 additions and 0 deletions

View File

@@ -39,6 +39,7 @@ from core.views.manage.threshold.irc import (
ThresholdIRCNetworkDel,
ThresholdIRCNetworkInfo,
ThresholdIRCNetworkInfoEdit,
ThresholdIRCNetworkRelayAuth,
ThresholdIRCNetworkRelayDel,
ThresholdIRCNetworkRelayProvision,
ThresholdIRCNetworkRelays,
@@ -143,6 +144,11 @@ urlpatterns = [
ThresholdIRCNetworkRelayProvision.as_view(),
name="threshold_irc_network_relay_provision",
),
path(
"manage/threshold/irc/network/<str:net>/<int:num>/auth/",
ThresholdIRCNetworkRelayAuth.as_view(),
name="threshold_irc_network_relay_auth",
),
path(
"manage/threshold/irc/actions/registration/",
ThresholdIRCActionsRegistration.as_view(),