Ignore:
Timestamp:
15 Dec 2014, 07:44:01 (10 years ago)
Author:
Henrik Bettermann
Message:

Protect pdf download if document has not been published.

Add workflow transition 'retract'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/trunk/src/waeup/ikoba/documents/workflow.py

    r12222 r12240  
    4848        msg = _('Document published'),
    4949        destination = PUBLISHED),
     50
     51    Transition(
     52        transition_id = 'retract',
     53        title = _('Retract documet'),
     54        source = PUBLISHED,
     55        condition = NullCondition,
     56        msg = _('Document retracted'),
     57        destination = CREATED),
    5058    )
    5159
Note: See TracChangeset for help on using the changeset viewer.