social/microsoft_outlook_single_tenant/models/res_config_settings.py
2022-12-19 14:59:29 +01:00

15 lines
476 B
Python

# Copyright 2022 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
from odoo import fields, models
class ResConfigSettings(models.TransientModel):
_inherit = "res.config.settings"
microsoft_outlook_directory_tenant_id = fields.Char(
string="Directory (tenant) ID",
help="Place here Tenant ID (or Application ID), if single-tenant application",
config_parameter="microsoft_outlook_directory_tenant_id",
)