mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
341 B
Python
12 lines
341 B
Python
from django.apps import AppConfig
|
|
from django.core import serializers
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class GISConfig(AppConfig):
|
|
name = 'django.contrib.gis'
|
|
verbose_name = _("GIS")
|
|
|
|
def ready(self):
|
|
serializers.BUILTIN_SERIALIZERS.setdefault('geojson', 'django.contrib.gis.serializers.geojson')
|