Skip to content

Commit

Permalink
Update INSTALLED_APPS and urlpatterns to match new apps
Browse files Browse the repository at this point in the history
  • Loading branch information
adolfojmnz committed Oct 21, 2023
1 parent 799a09c commit 804da60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
4 changes: 2 additions & 2 deletions config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
# My Apps
"accounts.apps.AccountsConfig",
"tokens.apps.TokensConfig",
"forex.apps.ForexConfig",
"metrics.apps.MetricsConfig",
"assets.apps.AssetsConfig",
"trades.apps.TradesConfig",
]

MIDDLEWARE = [
Expand Down
11 changes: 2 additions & 9 deletions config/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,8 @@
urlpatterns = [
path("admin/", admin.site.urls),

# Accounts URLs
path("api/", include("accounts.routers")),

# JWT Tokens
path("api/", include("tokens.routers")),

# Forex URLs
path("api/", include("forex.routers")),

# Metrics URL
path("api/", include("metrics.routers")),
path("api/", include("assets.routers")),
path("api/", include("trades.routers")),
]

0 comments on commit 804da60

Please sign in to comment.