Tower: upload rpc_helper 16.0.1.0.0 (via marketplace)
This commit is contained in:
24
addons/rpc_helper/readme/USAGE.rst
Normal file
24
addons/rpc_helper/readme/USAGE.rst
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
Via code
|
||||||
|
~~~~~~~~
|
||||||
|
|
||||||
|
Decorate an Odoo model class like this::
|
||||||
|
|
||||||
|
from odoo.addons.rpc_helper.decorator import disable_rpc
|
||||||
|
|
||||||
|
@disable_rpc()
|
||||||
|
class AverageModel(models.Model):
|
||||||
|
_inherit = "avg.model"
|
||||||
|
|
||||||
|
This will disable ALL calls.
|
||||||
|
|
||||||
|
To selectively disable only some methods::
|
||||||
|
|
||||||
|
@disable_rpc("create", "write", "any_method")
|
||||||
|
class AverageModel(models.Model):
|
||||||
|
_inherit = "avg.model"
|
||||||
|
|
||||||
|
|
||||||
|
Via `ir.model` configuration
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
See "Configuration" section.
|
||||||
Reference in New Issue
Block a user