Files
development-tools/dev_github_connector/models/git_platform.py
Stéphan Sainléger 4b8a1f44a9 [UPD] Add git.platform model
to manage connection with other Git softwares
2022-06-21 10:32:25 +02:00

10 lines
189 B
Python

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