gazette.models.organization =========================== .. py:module:: gazette.models.organization Classes ------- .. autoapisummary:: gazette.models.organization.Organization gazette.models.organization.OrganizationMove Module Contents --------------- .. py:class:: Organization(title: str, parent: Self | None = None, **kwargs: Any) Bases: :py:obj:`onegov.core.orm.abstract.AdjacencyList`, :py:obj:`onegov.core.orm.mixins.ContentMixin`, :py:obj:`onegov.core.orm.mixins.TimestampMixin` Defines an organization for official notices. Although the categories are defined as a flexible adjacency list, we currently use it only as a two-stage adjacency list key-value list (name-title). .. py:attribute:: __tablename__ :value: 'gazette_organizations' .. py:attribute:: active :type: sqlalchemy.Column[bool | None] .. py:attribute:: external_name :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: parent :type: sqlalchemy.orm.relationship[Organization | None] .. py:method:: notices() -> sqlalchemy.orm.Query[onegov.gazette.models.notice.GazetteNotice] Returns a query to get all notices related to this category. .. py:property:: in_use :type: bool True, if the organization is used by any notice. .. py:method:: title_observer(title: str) -> None .. py:class:: OrganizationMove(session: sqlalchemy.orm.Session, subject_id: int, target_id: int, direction: onegov.core.orm.abstract.MoveDirection) Represents a single move of an adjacency list item. .. py:attribute:: session .. py:attribute:: subject_id .. py:attribute:: target_id .. py:attribute:: direction .. py:method:: execute() -> None