]> git.parisson.com Git - teleforma.git/commit
1st working version of chat
authortest test <yoanl@pilotsystems.net>
Wed, 9 Jun 2021 15:48:22 +0000 (17:48 +0200)
committerYoan Le Clanche <yoanl@pilotsystems.net>
Wed, 9 Jun 2021 15:48:22 +0000 (17:48 +0200)
commitec0712c80bf47515dce1d7cb44bb51af6350d562
tree1a5c3f9e18acd99141fc3ff6df8df04283d32bee
parent31bd67aa8b33205a86f6506c9e1c749a9a9c4ba6
1st working version of chat
35 files changed:
app/settings.py
requirements.txt
teleforma/admin.py
teleforma/management/commands/teleforma-broadcast-message.py
teleforma/migrations/0002_auto_20210607_1815.py [new file with mode: 0644]
teleforma/migrations/0003_alter_chatmessage_user.py [new file with mode: 0644]
teleforma/migrations/0004_auto_20210609_1419.py [new file with mode: 0644]
teleforma/models/__init__.py
teleforma/models/chat.py [new file with mode: 0644]
teleforma/src/.gitignore [new file with mode: 0644]
teleforma/src/.prettierrc [new file with mode: 0644]
teleforma/src/README.md [new file with mode: 0644]
teleforma/src/babel.config.js [new file with mode: 0644]
teleforma/src/js/components/Chat.vue [new file with mode: 0644]
teleforma/src/js/main.ts [new file with mode: 0644]
teleforma/src/js/shims-tsx.d.ts [new file with mode: 0644]
teleforma/src/js/shims-vue.d.ts [new file with mode: 0644]
teleforma/src/package.json [new file with mode: 0644]
teleforma/src/public/favicon.ico [new file with mode: 0644]
teleforma/src/public/index.html [new file with mode: 0644]
teleforma/src/tsconfig.json [new file with mode: 0644]
teleforma/src/vue.config.js [new file with mode: 0644]
teleforma/src/yarn.lock [new file with mode: 0644]
teleforma/templates/teleforma/base.html
teleforma/templates/teleforma/course_detail.html
teleforma/templates/teleforma/courses.html
teleforma/templates/teleforma/inc/chat_room.html
teleforma/templates/teleforma/webpack.html [new file with mode: 0644]
teleforma/templatetags/teleforma_tags.py
teleforma/templatetags/webpack.py [new file with mode: 0644]
teleforma/urls.py
teleforma/views/core.py
teleforma/ws/chat.py [new file with mode: 0644]
teleforma/ws/logger.py [new file with mode: 0644]
teleforma/ws/routing.py [new file with mode: 0644]