Files
development-tools/dev_github_connector/models/company.py
Stéphan Sainléger 194422e2a9 [UPD] Modify the authentification process to Github
Now use a sole Github access for whole Odoo users, set in the General Configuration
2022-07-01 09:52:30 +02:00

8 lines
147 B
Python

from odoo import models, fields
class Company(models.Model):
_inherit = "res.company"
github_token = fields.Char(string="Github token")