9 lines
225 B
Python
9 lines
225 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class PublishedFoo(models.Model):
|
|
_name = 'test_new_api.foo'
|
|
_inherit = ['test_new_api.foo', 'test_inherit.mixin']
|