[quote]delete things in a Magnolia website without being asked to publish such deletions later on? [/quote]
It depends on what command the Delete action triggers. By default, deletion is an action that requires publishing. This is by design to prevent accidents. You can change the command to one that deletes immediately but be careful. Compare the Pages and Configuration apps. In Pages, the Delete action triggers the 'markAsDeleted' command which requires publishing the change. /modules/pages/apps/pages/subApps/browser/actions/delete/command = markAsDeleted In Configuration, the Delete action triggers the 'delete' command which deletes the node immediately. /modules/ui-admincentral/apps/configuration/subApps/browser/actions/delete/command = delete You could create two Delete actions. One that deletes immediately and another that requires the publishing step. Limit their availability by role. http://documentation.magnolia-cms.com/display/DOCS/Action+definition#Actiondefinition-Availability http://documentation.magnolia-cms.com/display/DOCS/Action+bar+definition#Actionbardefinition-Availability Hope this helps. --Antti -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=2f78025c-0cbd-468e-a86c-f3ff46ed9a33 ---------------------------------------------------------------- For list details, see http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use our forums: http://forum.magnolia-cms.com/ To unsubscribe, E-mail to: <[email protected]> ----------------------------------------------------------------
