2024-04-22 22:22:18 +00:00
|
|
|
# Copyright (C) 2024 by Animath
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2024-04-27 06:57:01 +00:00
|
|
|
|
|
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
|
|
|
|
|
|
class ChatView(LoginRequiredMixin, TemplateView):
|
|
|
|
"""
|
|
|
|
This view is the main interface of the chat system, which is working
|
|
|
|
with Javascript and websockets.
|
|
|
|
"""
|
|
|
|
template_name = "chat/chat.html"
|