[IMP] Small improvements
[odoo/odoo.git] / addons / mail / doc / mail_needaction_howto.rst
1
2 How to use the need action mechanism in my addon
3 =================================================
4
5 Make your module inheriting from ir.needaction_mixin class
6
7 Feature integration
8 ++++++++++++++++++++
9
10 ::
11
12   class my_module(osv.osv):
13     _name = "my.module"
14     _description = "My Module"
15     _inherit = ['ir.needaction_mixin']