Repository URL to install this package:
|
Version:
2.4.1rc1 ▾
|
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
from .finders import get_finders
class WagtailEmbedsAppConfig(AppConfig):
name = 'wagtail.embeds'
label = 'wagtailembeds'
verbose_name = _("Wagtail embeds")
def ready(self):
# Check configuration on startup
get_finders()