[IMP] base_ical: Allow advanced snippets. Use apikeys with scope.

This commit is contained in:
fkantelberg
2024-04-23 18:44:20 +02:00
parent 1e6b6ceda7
commit d7f8964db6
17 changed files with 564 additions and 222 deletions

View File

@@ -0,0 +1,12 @@
# 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)