Skip to content

Commit

Permalink
Merge pull request #612 from karrioapi/patch-2024.6-rc9
Browse files Browse the repository at this point in the history
[release-candidate] 2024.6-rc9
  • Loading branch information
danh91 authored Jul 19, 2024
2 parents 7fe83d5 + a797ea2 commit bea6d56
Show file tree
Hide file tree
Showing 305 changed files with 22,745 additions and 47,048 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
DEBUG_MODE=True
ADMIN_DASHBOARD=True
ALLOWED_HOSTS=*
DATABASE_NAME=db.sqlite3
# DATABASE_ENGINE=postgresql
Expand Down
2 changes: 1 addition & 1 deletion apps/api/karrio/server/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.6-rc8
2024.6-rc9
6 changes: 3 additions & 3 deletions apps/api/karrio/server/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@
ALLOW_MULTI_ACCOUNT = config(
"ALLOW_MULTI_ACCOUNT", default=MULTI_ORGANIZATIONS, cast=bool
)
ADMIN_DASHBOARD = (
importlib.util.find_spec("karrio.server.admin") is not None # type:ignore
)
ADMIN_DASHBOARD = importlib.util.find_spec( # type:ignore
"karrio.server.admin"
) is not None and config("ADMIN_DASHBOARD", default=False, cast=bool)
ORDERS_MANAGEMENT = (
importlib.util.find_spec("karrio.server.orders") is not None # type:ignore
)
Expand Down
2 changes: 1 addition & 1 deletion apps/api/karrio/server/static/karrio/js/karrio.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit bea6d56

Please sign in to comment.