mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 23:45:44 +07:00
[IMP] runbot: add active field on runbot config
There are many configurations which we do not care about but we would rather not delete them.
This commit is contained in:
parent
669f2be60c
commit
3f186b184f
@ -45,6 +45,7 @@ class Config(models.Model):
|
||||
_inherit = "mail.thread"
|
||||
|
||||
name = fields.Char('Config name', required=True, tracking=True, help="Unique name for config please use trigram as postfix for custom configs")
|
||||
active = fields.Boolean(default=True)
|
||||
|
||||
description = fields.Char('Config description')
|
||||
step_order_ids = fields.One2many('runbot.build.config.step.order', 'config_id', copy=True)
|
||||
|
Loading…
Reference in New Issue
Block a user