You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
519 B

  1. # Copyright 2019 Eficent Business and IT Consulting Services, S.L.
  2. # Copyright 2019 Aleph Objects, Inc.
  3. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
  4. from odoo import fields, models
  5. class MessageAutoSubscribeNotifyOwnTest(models.Model):
  6. """A Fake model to Test."""
  7. _name = 'message_auto_subscribe_notify_own.test'
  8. _inherit = 'mail.thread'
  9. name = fields.Char()
  10. user_id = fields.Many2one(comodel_name='res.users',
  11. track_visibility='onchange')