MVPEEEE #7

Merged
andrewlalis merged 36 commits from develop into master 2018-10-01 14:53:24 +00:00
2 changed files with 0 additions and 8 deletions
Showing only changes of commit 03ca23d5c9 - Show all commits

View File

@ -16,10 +16,7 @@ Including another URLconf
from django.contrib import admin
from django.urls import re_path,path,include
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('admin/', admin.site.urls),
re_path(r'^api/postings/', include(('postings.api.urls','postings'), namespace='api-postings')),
]

View File

@ -1,5 +0,0 @@
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world. You're at the index.")