chat.models.text_module ======================= .. py:module:: chat.models.text_module Classes ------- .. autoapisummary:: chat.models.text_module.TextModule Module Contents --------------- .. py:class:: TextModule Bases: :py:obj:`onegov.core.orm.Base`, :py:obj:`onegov.core.orm.mixins.TimestampMixin` Defines a text module that can be selected and inserted at the cursor position when composing a message in text areas. These text modules can either be private or be shared across the entire organization to help standardize ticket responses. .. py:attribute:: __tablename__ :value: 'text_modules' .. py:attribute:: id :type: sqlalchemy.Column[uuid.UUID] .. py:attribute:: name :type: sqlalchemy.Column[str] .. py:attribute:: text :type: sqlalchemy.Column[str] .. py:attribute:: message_type :type: sqlalchemy.Column[str | None] .. py:attribute:: handler_code :type: sqlalchemy.Column[str | None] .. py:attribute:: user_id :type: sqlalchemy.Column[uuid.UUID | None] .. py:attribute:: user :type: sqlalchemy.orm.relationship[onegov.user.User | None] .. py:property:: private :type: bool .. py:property:: formatted_text :type: markupsafe.Markup .. py:property:: preview_text :type: str