2024-05-23 13:11:00 -04:00
|
|
|
from odoo import models, fields
|
2024-05-23 08:50:09 -04:00
|
|
|
|
|
|
|
|
class ResUsers(models.Model):
|
|
|
|
|
_inherit = 'res.users'
|
|
|
|
|
|
2024-05-23 13:11:00 -04:00
|
|
|
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)
|