mirror of
https://github.com/bringout/oca-ocb-mail.git
synced 2026-04-22 10:21:59 +02:00
11 lines
220 B
Python
11 lines
220 B
Python
from odoo import models
|
|
|
|
from odoo.addons.sms.tools.sms_api import SmsApi
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
def _get_sms_api_class(self):
|
|
self.ensure_one()
|
|
return SmsApi
|