pas.models.change ================= .. py:module:: pas.models.change Attributes ---------- .. autoapisummary:: pas.models.change.Action pas.models.change.ACTIONS Classes ------- .. autoapisummary:: pas.models.change.Change Module Contents --------------- .. py:type:: Action :canonical: Literal['add', 'edit', 'delete'] .. py:data:: ACTIONS :type: list[Action] :value: ['add', 'edit', 'delete'] .. py:class:: Change Bases: :py:obj:`onegov.core.orm.Base`, :py:obj:`onegov.core.orm.mixins.ContentMixin`, :py:obj:`onegov.core.orm.mixins.TimestampMixin` Mixin providing a meta/content JSON pair. Meta is a JSON column loaded with each request, content is a JSON column loaded deferred (to be shown only in the detail view). .. py:attribute:: __tablename__ :value: 'pas_changes' .. py:attribute:: id :type: sqlalchemy.Column[uuid.UUID] .. py:attribute:: user_id :type: sqlalchemy.Column[str | None] .. py:attribute:: user_name :type: sqlalchemy.Column[str | None] .. py:property:: user :type: str | None .. py:attribute:: action :type: sqlalchemy.Column[Action] .. py:property:: action_label :type: str .. py:attribute:: model :type: sqlalchemy.Column[str] .. py:property:: attendence :type: onegov.pas.models.Attendence | None .. py:attribute:: changes :type: onegov.core.orm.mixins.dict_property[dict[str, str | int | None] | None] .. py:property:: date :type: datetime.date | None .. py:property:: parliamentarian :type: onegov.pas.models.Parliamentarian | None .. py:property:: commission :type: onegov.pas.models.Commission | None .. py:method:: add(request: onegov.town6.request.TownRequest, action: Action, attendence: onegov.pas.models.Attendence) -> Change :classmethod: Create a new change and add it to the session.