add chat model
This commit is contained in:
parent
4c9f1e1508
commit
25325b4fd9
5 changed files with 79 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
|||
from chat_box.views import chat
|
||||
from chat_box.views import ChatView
|
||||
from django.conf import settings
|
||||
from django.conf.urls import include, url
|
||||
from django.contrib import admin
|
||||
|
@ -367,7 +367,7 @@ urlpatterns = [
|
|||
|
||||
url(r'^custom_checker_sample/', about.custom_checker_sample, name='custom_checker_sample'),
|
||||
|
||||
url(r'chat/', chat, name='chat'),
|
||||
url(r'chat/', ChatView.as_view(), name='chat'),
|
||||
]
|
||||
|
||||
favicon_paths = ['apple-touch-icon-180x180.png', 'apple-touch-icon-114x114.png', 'android-chrome-72x72.png',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue