15 lines
419 B
Python
15 lines
419 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import fields, models
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
enable_web_push_notification = fields.Boolean("Enable Firebase Push Notification")
|
|
enable_bell_notification = fields.Boolean("Enable Bell Notification")
|
|
api_key = fields.Char("Api Key")
|
|
vapid = fields.Char("Vapid",readonly=False)
|
|
config_details = fields.Text("Config Details")
|
|
|
|
|