summaryrefslogtreecommitdiff
path: root/addons/website_event_track/models/res_config_settings.py
blob: 8d87e90d9ff262bfcc1bb6671c182be6fb536dd1 (plain)
1
2
3
4
5
6
7
8
9
10
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

from odoo import fields, models


class ResConfigSettings(models.TransientModel):
    _inherit = 'res.config.settings'

    events_app_name = fields.Char('Events App Name', related='website_id.events_app_name', readonly=False)