mirror of https://github.com/OCA/web.git
17 lines
468 B
Python
17 lines
468 B
Python
from odoo import api, models
|
|
|
|
|
|
class IrConfigParameter(models.Model):
|
|
_inherit = "ir.config_parameter"
|
|
|
|
@api.model
|
|
def get_web_m2x_options(self):
|
|
opts = [
|
|
"web_m2x_options.create",
|
|
"web_m2x_options.create_edit",
|
|
"web_m2x_options.limit",
|
|
"web_m2x_options.search_more",
|
|
"web_m2x_options.m2o_dialog",
|
|
]
|
|
return self.sudo().search_read([["key", "in", opts]], ["key", "value"])
|