mirror of
https://github.com/bringout/oca-website.git
synced 2026-04-24 13:12:03 +02:00
13 lines
372 B
Python
13 lines
372 B
Python
# Copyright 2021 Studio73 - Ioan Galan <ioan@studio73.es>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class Website(models.Model):
|
|
_inherit = "website"
|
|
|
|
cookiefirst_identifier = fields.Char(
|
|
string="Cookiefirst ID",
|
|
help="This field holds the ID, needed for Cookiefirst functionality.",
|
|
)
|