Skip to content

Commit f843d1f

Browse files
committed
rename finder/api -> finder/browser
1 parent 4160598 commit f843d1f

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from django.urls import path
22
from django.views.i18n import JavaScriptCatalog
33

4-
from finder.api.views import BrowserView
4+
from finder.browser.views import BrowserView
55

66

77
app_name = 'finder-api'

testapp/urls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
from django.contrib import admin
1919
from django.urls import include, path
2020

21-
from finder.api import urls as finder_urls
21+
from finder.browser import urls as browser_urls
2222

2323
from testapp.views import TestAppView
2424

2525

2626
urlpatterns = [
2727
path('admin/', admin.site.urls),
28-
path('finder-api/', include(finder_urls)),
28+
path('finder-api/', include(browser_urls)),
2929
path('testapp/', TestAppView.as_view(), name='testapp'),
3030
]
3131
if settings.DEBUG:

0 commit comments

Comments
 (0)