mirror of
https://github.com/bringout/oca-website.git
synced 2026-04-19 10:32:02 +02:00
14 lines
413 B
Python
14 lines
413 B
Python
# Copyright 2020 Trey - Antonio González <antonio@trey.es>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class Website(models.Model):
|
|
_inherit = "website"
|
|
|
|
cookiebot_dgid = fields.Char(
|
|
string="Cookiebot Domain Group ID",
|
|
help="Get this code from Cookiebot to enable it on the website.",
|
|
)
|
|
cookiebot_enabled = fields.Boolean()
|