fsi.app ======= .. py:module:: fsi.app Classes ------- .. autoapisummary:: fsi.app.FsiApp Functions --------- .. autoapisummary:: fsi.app.get_template_directory fsi.app.get_static_directory fsi.app.get_theme fsi.app.get_create_new_organisation_factory fsi.app.get_i18n_localedirs fsi.app.get_js_path fsi.app.get_webasset_output fsi.app.get_common_asset Module Contents --------------- .. py:class:: FsiApp Bases: :py:obj:`onegov.town6.TownApp` Baseclass for Morepath OneGov applications. .. py:attribute:: request_class The class of the Request to create. Must be a subclass of :class:`morepath.Request`. By default the request class is :class:`morepath.Request` .. py:attribute:: send_ticket_statistics :value: False .. py:method:: es_may_use_private_search(request: onegov.fsi.request.FsiRequest) -> bool Returns True if the given request is allowed to access private search results. By default every logged in user has access to those. This method may be overwritten if this is not desired. .. py:method:: configure_organisation(*, enable_user_registration: bool = False, enable_yubikey: bool = False, disable_password_reset: bool = False, **cfg: Any) -> None .. py:method:: on_login(request: onegov.core.request.CoreRequest, user: onegov.user.User) -> None Called by the auth module, whenever a successful login was completed. .. py:function:: get_template_directory() -> str .. py:function:: get_static_directory() -> str .. py:function:: get_theme() -> onegov.fsi.theme.FsiTheme .. py:function:: get_create_new_organisation_factory() -> collections.abc.Callable[[FsiApp, str], onegov.org.models.Organisation] .. py:function:: get_i18n_localedirs() -> list[str] .. py:function:: get_js_path() -> str .. py:function:: get_webasset_output() -> str .. py:function:: get_common_asset() -> collections.abc.Iterator[str]