mirror of
https://github.com/deunix-educ/Fail2banMqttActionBanishment.git
synced 2026-08-24 03:11:58 +02:00
13 lines
324 B
Python
13 lines
324 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'banevents'
|
|
|
|
urlpatterns = [
|
|
path('', views.dashboard, name='dashboard'),
|
|
path('historique/', views.history, name='history'),
|
|
path('api/join/', views.join_node, name='join_node'),
|
|
path('communaute/', views.community_landing, name='community'),
|
|
]
|