14 lines
642 B
Python
14 lines
642 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import api, fields, models
|
||
|
|
||
|
|
||
|
class ResConfigSettings(models.TransientModel):
|
||
|
_inherit = 'res.config.settings'
|
||
|
|
||
|
cal_client_id = fields.Char("Client_id", config_parameter='google_calendar_client_id', default='')
|
||
|
cal_client_secret = fields.Char("Client_key", config_parameter='google_calendar_client_secret', default='')
|
||
|
cal_sync_paused = fields.Boolean("Google Synchronization Paused", config_parameter='google_calendar_sync_paused',
|
||
|
help="Indicates if synchronization with Google Calendar is paused or not.")
|