Implement adding networks
This commit is contained in:
12
app/urls.py
12
app/urls.py
@@ -24,6 +24,8 @@ from core.api.views.threshold import ThresholdChans, ThresholdOnline, ThresholdU
|
||||
from core.views import Billing, Cancel, Home, Order, Portal, Signup
|
||||
from core.views.callbacks import Callback
|
||||
from core.views.manage.threshold.irc import (
|
||||
ThresholdIRCActions,
|
||||
ThresholdIRCActionsAddNetwork,
|
||||
ThresholdIRCAliases,
|
||||
ThresholdIRCAliasesEdit,
|
||||
ThresholdIRCNetworkActions,
|
||||
@@ -102,6 +104,16 @@ urlpatterns = [
|
||||
ThresholdIRCNetworks.as_view(),
|
||||
name="threshold_irc_networks",
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/overview/actions/",
|
||||
ThresholdIRCActions.as_view(),
|
||||
name="threshold_irc_actions",
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/overview/actions/add-network/",
|
||||
ThresholdIRCActionsAddNetwork.as_view(),
|
||||
name="threshold_irc_actions_add-network",
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/network/<str:net>/",
|
||||
ThresholdIRCNetwork.as_view(),
|
||||
|
||||
Reference in New Issue
Block a user