8 lines
294 B
Python
8 lines
294 B
Python
from odoo import models, fields
|
|
|
|
class ResUsers(models.Model):
|
|
_inherit = 'res.users'
|
|
|
|
caldav_calendar_url = fields.Char(string='CalDAV Calendar URL')
|
|
caldav_username = fields.Char(string='CalDAV Username')
|
|
caldav_password = fields.Char(string='CalDAV Password', password=True)
|