15 lines
336 B
Python
15 lines
336 B
Python
# Copyright 2026 Stéphan Sainléger (Elabore)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResUsers(models.Model):
|
|
_inherit = "res.users"
|
|
|
|
ssh_key_ids = fields.One2many(
|
|
comodel_name="ssh.key",
|
|
inverse_name="user_id",
|
|
string="SSH Keys",
|
|
)
|