Skip to content

Commit

Permalink
Update context_processors.py (GeoNode#1068)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiagiupponi authored and DavidQuartz committed Jul 8, 2022
1 parent 42cc281 commit afaf5ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geonode_mapstore_client/context_processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from django.conf import settings

from geonode.upload.utils import get_max_upload_size, get_max_upload_parallelism_limit
from geonode.utils import get_supported_file_types
from geonode.utils import get_supported_datasets_file_types

def resource_urls(request):
"""Global values to pass to templates"""
Expand Down Expand Up @@ -56,6 +56,6 @@ def resource_urls(request):
dict()).get(
'MOSAIC_ENABLED',
False),
'SUPPORTED_DATASET_FILE_TYPES': get_supported_file_types()
'SUPPORTED_DATASET_FILE_TYPES': get_supported_datasets_file_types()
}
return defaults

0 comments on commit afaf5ae

Please sign in to comment.