onboarding.app ============== .. py:module:: onboarding.app Classes ------- .. autoapisummary:: onboarding.app.OnboardingApp Functions --------- .. autoapisummary:: onboarding.app.get_static_directory onboarding.app.get_template_directory onboarding.app.get_theme onboarding.app.get_i18n_localedirs onboarding.app.get_i18n_used_locales onboarding.app.get_i18n_default_locale onboarding.app.get_js_path onboarding.app.get_webasset_output onboarding.app.get_common_asset Module Contents --------------- .. py:class:: OnboardingApp Bases: :py:obj:`onegov.core.Framework`, :py:obj:`onegov.reservation.LibresIntegration`, :py:obj:`onegov.file.DepotApp`, :py:obj:`onegov.search.ElasticsearchApp` Baseclass for Morepath OneGov applications. .. py:attribute:: serve_static_files :value: True Returns True if ``/static`` files should be served. Needs to be enabled manually. Note that even if the static files are not served, ``/static`` path is still served, it just won't return anything but a 404. Note also that static files are served **publicly**. You can override this in your application, but doing that and testing for it is on you! See also: :mod:`onegov.core.static`. .. py:method:: configure_onboarding(*, onboarding: dict[str, Any], **cfg: Any) -> None .. py:function:: get_static_directory() -> str .. py:function:: get_template_directory() -> str .. py:function:: get_theme() -> onegov.onboarding.theme.OnboardingTheme .. py:function:: get_i18n_localedirs() -> list[str] .. py:function:: get_i18n_used_locales() -> set[str] .. py:function:: get_i18n_default_locale() -> str .. py:function:: get_js_path() -> str .. py:function:: get_webasset_output() -> str .. py:function:: get_common_asset() -> collections.abc.Iterator[str]