12 lines
440 B
Python
12 lines
440 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='')
|