7 lines
135 B
Python
7 lines
135 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|