mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
* [WIP] Refactor calendar_channel_connector * [FIX] Hotel Calendar + Hotel Connector * [ADD] Push URLs * [IMP] Connector * [IMP] Notifications * [ADD] hotel_channel_connector_wubook * [FIX] missing imports * [IMP] Clean code
11 lines
361 B
Python
11 lines
361 B
Python
# Copyright 2018 Alexandre Díaz <dev@redneboa.es>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo.addons.component.core import AbstractComponent
|
|
|
|
|
|
class HotelChannelConnectorDeleter(AbstractComponent):
|
|
_name = 'hotel.channel.deleter'
|
|
_inherit = ['base.deleter', 'base.hotel.channel.connector']
|
|
_usage = 'channel.deleter'
|