1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-30 04:31:11 +02:00

Add feature to install chat on the home screen

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello
2024-04-27 19:11:03 +02:00
parent 2d706b2b81
commit a121d1042b
10 changed files with 169 additions and 60 deletions

View File

@ -2,6 +2,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later
from django.urls import path
from django.views.generic import TemplateView
from .views import ChatView
@ -10,4 +11,5 @@ app_name = 'chat'
urlpatterns = [
path('', ChatView.as_view(), name='chat'),
path('fullscreen/', TemplateView.as_view(template_name="chat/fullscreen.html"), name='fullscreen'),
]