769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
12 lines
384 B
Python
12 lines
384 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
pad_server = fields.Char(help="Etherpad lite server. Example: beta.primarypad.com")
|
|
pad_key = fields.Char('Pad Api Key', help="Etherpad lite api key.", groups="base.group_system")
|