mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
[IMP] base_ical: Allow advanced snippets. Use apikeys with scope.
This commit is contained in:
12
base_ical/models/base_ical_url_show.py
Normal file
12
base_ical/models/base_ical_url_show.py
Normal 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)
|
||||
Reference in New Issue
Block a user