10 lines
256 B
Python
10 lines
256 B
Python
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import fields, models
|
||
|
|
||
|
|
||
|
class Website(models.Model):
|
||
|
_inherit = 'website'
|
||
|
|
||
|
newsletter_id = fields.Many2one(string="Newsletter List", comodel_name='mailing.list')
|