From: Elrond Date: Mon, 18 Aug 2014 22:56:37 +0000 (+0200) Subject: Add docs on collection_add_media hook. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3322a63df41f1b58d830aad0156160e6b532b5d7;p=mediagoblin.git Add docs on collection_add_media hook. --- diff --git a/docs/source/pluginwriter/hooks.rst b/docs/source/pluginwriter/hooks.rst index 5272266c..4aa062e8 100644 --- a/docs/source/pluginwriter/hooks.rst +++ b/docs/source/pluginwriter/hooks.rst @@ -17,3 +17,19 @@ Documentation on Built-in Hooks =============================== This section explains built-in hooks to MediaGoblin. + + +What hooks are available? +========================= + +'collection_add_media' +---------------------- + +This hook is used by ``add_media_to_collection`` +in ``mediagoblin.user_pages.lib``. +It gets a ``CollectionItem`` as its argument. +It's the newly created item just before getting commited. +So the item can be modified by the hook, if needed. +Changing the session regarding this item is currently +undefined behaviour, as the SQL Session might contain other +things.