Finish Threshold stats and implement network listing
This commit is contained in:
23
app/urls.py
23
app/urls.py
@@ -37,6 +37,13 @@ from core.views.dynamic.insights import (
|
||||
InsightsNicks,
|
||||
InsightsSearch,
|
||||
)
|
||||
from core.views.dynamic.manage.threshold.irc import (
|
||||
ThresholdIRCNetworks,
|
||||
ThresholdIRCStats,
|
||||
)
|
||||
|
||||
# Management stuff
|
||||
from core.views.manage.threshold import ThresholdIRCOverview
|
||||
|
||||
urlpatterns = [
|
||||
path("", Home.as_view(), name="home"),
|
||||
@@ -68,6 +75,22 @@ urlpatterns = [
|
||||
path("ui/insights/meta/", InsightsMeta.as_view(), name="meta_insights"),
|
||||
path("ui/insights/modal/", InsightsInfoModal.as_view(), name="modal_insights"),
|
||||
##
|
||||
path(
|
||||
"manage/threshold/irc/overview/",
|
||||
ThresholdIRCOverview.as_view(),
|
||||
name="threshold_irc_overview",
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/stats/",
|
||||
ThresholdIRCStats.as_view(),
|
||||
name="threshold_irc_stats",
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/networks/",
|
||||
ThresholdIRCNetworks.as_view(),
|
||||
name="threshold_irc_networks",
|
||||
),
|
||||
##
|
||||
path("api/chans/", ThresholdChans.as_view(), name="chans"),
|
||||
path("api/users/", ThresholdUsers.as_view(), name="users"),
|
||||
path("api/online/", ThresholdOnline.as_view(), name="online"),
|
||||
|
||||
Reference in New Issue
Block a user