Skip to content

Commit

Permalink
fix settings (#1936)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed Sep 10, 2024
1 parent 200e6fc commit 19866a8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,12 @@ def set_logging(level=None):


# General API settings
# NOTE: All except SODAR_API_DEFAULT_HOST are deprecated
# TODO: Remove after upgrading to SODAR Core v1.0.3
# (see bihealth/sodar-core#1495)
SODAR_API_DEFAULT_VERSION = '1.0'
SODAR_API_ALLOWED_VERSIONS = ['1.0']
SODAR_API_MEDIA_TYPE = 'application/vnd.bihealth.sodar+json'
SODAR_API_DEFAULT_HOST = env.url(
'SODAR_API_DEFAULT_HOST', 'http://127.0.0.1:8000'
)
Expand Down

0 comments on commit 19866a8

Please sign in to comment.