[UPD] Add git.platform model

to manage connection with other Git softwares
This commit is contained in:
Stéphan Sainléger
2022-06-10 20:55:09 +02:00
parent 64996c4ee5
commit 4b8a1f44a9
18 changed files with 100 additions and 32 deletions

View File

@@ -0,0 +1,9 @@
# -*- coding: utf-8 -*-
from odoo import models, fields
class GitPlatform(models.Model):
_inherit = "git.platform"
tool = fields.Selection(selection_add=[("github", "Github")])