Implement aliases
This commit is contained in:
12
app/urls.py
12
app/urls.py
@@ -31,6 +31,8 @@ from core.views.manage.threshold.irc import (
|
||||
ThresholdIRCNetworkRelayStatus,
|
||||
ThresholdIRCNetworks,
|
||||
ThresholdIRCStats,
|
||||
ThresholdIRCAliases,
|
||||
ThresholdIRCNetworkActions,
|
||||
)
|
||||
|
||||
# Management stuff
|
||||
@@ -141,6 +143,16 @@ urlpatterns = [
|
||||
ThresholdIRCNetworkChannels.as_view(),
|
||||
name="threshold_irc_network_channel",
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/aliases/",
|
||||
ThresholdIRCAliases.as_view(),
|
||||
name="threshold_irc_aliases",
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/network/<str:net>/actions/",
|
||||
ThresholdIRCNetworkActions.as_view(),
|
||||
name="threshold_irc_network_actions",
|
||||
),
|
||||
##
|
||||
path("api/chans/", ThresholdChans.as_view(), name="chans"),
|
||||
path("api/users/", ThresholdUsers.as_view(), name="users"),
|
||||
|
||||
Reference in New Issue
Block a user