teamplayer: update to work with the latest teamplayer changes

This commit is contained in:
Albert Hopkins 2016-12-04 01:50:19 +00:00
parent c4ca9c69ee
commit 34a9ad7e49
2 changed files with 1 additions and 3 deletions

View File

@ -20,7 +20,6 @@ INSTALLED_APPS = [
'haystack', 'haystack',
'rest_framework', 'rest_framework',
'teamplayer', 'teamplayer',
'tp_library',
] ]
MIDDLEWARE = [ MIDDLEWARE = [
@ -128,7 +127,7 @@ HAYSTACK_CONNECTIONS = {
}, },
} }
HAYSTACK_SIGNAL_PROCESSOR = 'haystack.signals.RealtimeSignalProcessor' HAYSTACK_SIGNAL_PROCESSOR = 'haystack.signals.RealtimeSignalProcessor'
HAYSTACK_CUSTOM_HIGHLIGHTER = 'tp_library.Highlighter' HAYSTACK_CUSTOM_HIGHLIGHTER = 'teamplayer.library.Highlighter'
TEAMPLAYER = { TEAMPLAYER = {
'STREAM_URL': '/stream.mp3', 'STREAM_URL': '/stream.mp3',

View File

@ -4,6 +4,5 @@ from django.contrib.auth.views import login as django_login
urlpatterns = [ urlpatterns = [
url(r'^accounts/login/$', django_login), url(r'^accounts/login/$', django_login),
url(r'^library/', include('tp_library.urls')),
url(r'', include('teamplayer.urls')), url(r'', include('teamplayer.urls')),
] ]