Skip to content

Commit f0475d8

Browse files
authored
Merge pull request #16 from akshatjain1004/main
Created a Student model in separate app
2 parents 845e29a + 20e3c2a commit f0475d8

File tree

17 files changed

+48
-1
lines changed

17 files changed

+48
-1
lines changed

backend/family_tree/db.sqlite3

128 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

backend/family_tree/family_tree/urls.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
1515
"""
1616
from django.contrib import admin
17-
from django.urls import path
17+
from django.urls import include, path
1818
from graphene_django.views import GraphQLView
1919

2020
urlpatterns = [
2121
path('admin/', admin.site.urls),
2222
path("graphql", GraphQLView.as_view(graphiql=True)),
23+
path('students/', include('student.urls')),
2324
]

backend/family_tree/student/__init__.py

Whitespace-only changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)