Public release from ruodoo-project: 19.0 - 2026-07-26 21:17:35 UTC

This commit is contained in:
CI Publish Bot
2026-07-26 21:17:45 +00:00
commit 4f7b594ec8
1335 changed files with 191620 additions and 0 deletions

View File

@ -0,0 +1,19 @@
from odoo import fields, models
class ResUsersMatrix(models.Model):
"""Extend res.users with Matrix credentials."""
_inherit = 'res.users'
tier_matrix_homeserver = fields.Char(
string='Matrix Homeserver',
help='URL Matrix homeserver, например https://matrix.org',
)
tier_matrix_access_token = fields.Char(
string='Matrix Access Token',
help='Access token для Matrix бота/пользователя.',
)
tier_matrix_room_id = fields.Char(
string='Matrix Room ID',
help='ID комнаты Matrix для переписки, например !roomid:server',
)