chore(base): rename information -> assistance

!43 #10
This commit is contained in:
2024-07-18 16:27:16 +09:30
parent 8c493e8fa3
commit be0ec86c48
14 changed files with 26 additions and 52 deletions

11
app/assistance/urls.py Normal file
View File

@ -0,0 +1,11 @@
from django.urls import path
from assistance.views import knowledge_base
app_name = "Assistance"
urlpatterns = [
path("information", knowledge_base.Index.as_view(), name="Knowledge Base"),
]