Skip to content

Commit

Permalink
Add Basic URLS
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-Jess committed Oct 3, 2023
1 parent 3ec829e commit 43e3cd6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions backend/pennmobile/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
),
path("dining/", include("dining.urls")),
path("penndata/", include("penndata.urls")),
path("subletting/", include("subletting.urls"))
]

urlpatterns = [
Expand Down
9 changes: 9 additions & 0 deletions backend/subletting/urls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from django.urls import path
from rest_framework import routers


#from subletting.views import{}

app_name = "subletting"

routers = routers.DefaultRouter()

0 comments on commit 43e3cd6

Please sign in to comment.