Files
development-tools/dev_github_connector/models/git_platform.py
2023-08-17 12:28:56 +02:00

10 lines
220 B
Python

# -*- coding: utf-8 -*-
from odoo import models, fields
class GitPlatform(models.Model):
_inherit = "git.platform"
tool = fields.Selection(selection_add=[("github", "Github")], ondelete={'github':'cascade'})