activity.models.publication_request =================================== .. py:module:: activity.models.publication_request Classes ------- .. autoapisummary:: activity.models.publication_request.PublicationRequest Module Contents --------------- .. py:class:: PublicationRequest Bases: :py:obj:`onegov.core.orm.Base`, :py:obj:`onegov.core.orm.mixins.TimestampMixin` Describes a request for publication. As users create new activities they need to ask for publication, where the activity is reviewed before it is made public. This repeats each period. Every activity which should be provided again has to be requested again. This is even possible multiple times per period, though that should be the exception. .. py:attribute:: __tablename__ :value: 'publication_requests' .. py:attribute:: id :type: sqlalchemy.Column[uuid.UUID] .. py:attribute:: activity_id :type: sqlalchemy.Column[uuid.UUID] .. py:attribute:: activity :type: sqlalchemy.orm.relationship[activity.models.activity.Activity] .. py:attribute:: period_id :type: sqlalchemy.Column[uuid.UUID] .. py:attribute:: period :type: sqlalchemy.orm.relationship[activity.models.period.Period]