Skip to content
Snippets Groups Projects
Commit 3817e969 authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

Simple API for autocomplete

parent 161aee79
No related branches found
No related tags found
No related merge requests found
...@@ -20,8 +20,10 @@ from django.conf import settings ...@@ -20,8 +20,10 @@ from django.conf import settings
from django.conf.urls.static import static from django.conf.urls.static import static
import web.urls import web.urls
import web.api_urls
urlpatterns = [ urlpatterns = [
url(r'^admin/', admin.site.urls), url(r'^admin/', admin.site.urls),
url(r'', include(web.urls)) url(r'', include(web.urls)),
url(r'^api/', include(web.api_urls))
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
- implement `on leave` button - implement `on leave` button
- what about possible sunday in availabilities? - what about possible sunday in availabilities?
- make some names sound/look more pythonic - make some names sound/look more pythonic
- in beta remember to disable Guest Access
- in beta remember to forbid not-logged users to browse the API
** Visual ** Visual
- None - None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment