diff --git a/product/ERP5/__init__.py b/product/ERP5/__init__.py index 61dfd39969b6a66e0e8d2ea4235253fa71e3973e..9504085cb9b3a7dab03fdf041a3f03f57c717a33 100644 --- a/product/ERP5/__init__.py +++ b/product/ERP5/__init__.py @@ -46,7 +46,7 @@ product_path = package_home( globals() ) # Define object classes and tools from Tool import CategoryTool, SimulationTool, RuleTool, IdTool, TemplateTool,\ TestTool, DomainTool, AlarmTool, OrderTool, DeliveryTool,\ - TrashTool + TrashTool, ContributionTool import ERP5Site object_classes = ( ERP5Site.ERP5Site, ) @@ -61,6 +61,7 @@ portal_tools = ( CategoryTool.CategoryTool, OrderTool.OrderTool, DeliveryTool.DeliveryTool, TrashTool.TrashTool, + ContributionTool.ContributionTool, ) content_classes = () content_constructors = ()