New in version 1.1.
To allow an user to publish an object, edit its profile (via the admin interface) and check the can_publish field.
There is no setting for the moment, but you can:
- Remove “publisher” permission of all users
- Unpublish all objects (see below)
You can also edit the code and send a patch ;-)
In a python shell (./manage.py shell), execute the following lines:
>>> from openPLM.plmapp.models import PLMObject
>>> PLMObject.objects.update(published=False)
(no histories are recorded).