Skip to content

Commit

Permalink
rename finder/api -> finder/browser
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Nov 9, 2024
1 parent 4160598 commit f843d1f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion finder/api/urls.py → finder/browser/urls.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from django.urls import path
from django.views.i18n import JavaScriptCatalog

from finder.api.views import BrowserView
from finder.browser.views import BrowserView


app_name = 'finder-api'
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions testapp/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
from django.contrib import admin
from django.urls import include, path

from finder.api import urls as finder_urls
from finder.browser import urls as browser_urls

from testapp.views import TestAppView


urlpatterns = [
path('admin/', admin.site.urls),
path('finder-api/', include(finder_urls)),
path('finder-api/', include(browser_urls)),
path('testapp/', TestAppView.as_view(), name='testapp'),
]
if settings.DEBUG:
Expand Down

0 comments on commit f843d1f

Please sign in to comment.