mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
13 lines
313 B
Python
13 lines
313 B
Python
# Copyright 2024 initOS GmbH
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl-3.0)
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class BaseIcalUrlShow(models.AbstractModel):
|
|
_name = "base.ical.url.show"
|
|
_description = "Show URL for iCalendar"
|
|
|
|
id = fields.Id()
|
|
url = fields.Char(readonly=True)
|