mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-01 15:54:53 +00:00

Sync up to the same version we have on the commitfest app, which will also be required for eventual django 1.11 support.
12 lines
232 B
Python
12 lines
232 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class SelectableConfig(AppConfig):
|
|
"""App configuration for django-selectable."""
|
|
|
|
name = 'selectable'
|
|
|
|
def ready(self):
|
|
from . import registry
|
|
registry.autodiscover()
|