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.

13 lines
319 B

  1. # Copyright 2016 ACSONE SA/NV (<http://acsone.eu>)
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  3. from openerp import fields, models
  4. TIMELINE_VIEW = ('timeline', 'Timeline')
  5. class IrUIView(models.Model):
  6. _inherit = 'ir.ui.view'
  7. type = fields.Selection(selection_add=[TIMELINE_VIEW])