Skip to content

Commit

Permalink
Re-organize the versioned ui api code files.
Browse files Browse the repository at this point in the history
No-Issue

Signed-off-by: James Tanner <[email protected]>
  • Loading branch information
jctanner committed Sep 5, 2024
1 parent 08dc2d6 commit 440b800
Show file tree
Hide file tree
Showing 42 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions galaxy_ng/app/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from django.urls import include, path

from . import views
from .ui import urls as ui_urls
from .ui_v2 import urls as ui_v2_urls
from .ui.v1 import urls as ui_v1_urls
from .ui.v2 import urls as ui_v2_urls
from .v1 import urls as v1_urls
from .v3 import urls as v3_urls

Expand Down Expand Up @@ -60,7 +60,7 @@
]

urlpatterns = [
path("_ui/", include((ui_urls, app_name), namespace="ui")),
path("_ui/", include((ui_v1_urls, app_name), namespace="ui")),
path("_ui/v2/", include((ui_v2_urls, app_name), namespace="ui_v2")),

path("", include((v3_combined, app_name), namespace='v3')),
Expand Down

0 comments on commit 440b800

Please sign in to comment.