mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
377616168b
closes odoo/design-themes#988 Related: odoo/odoo#178200 Related: odoo/enterprise#69762 Related: odoo/documentation#11115 Related: odoo/upgrade#6577 Related: odoo/upgrade-util#143 Signed-off-by: Christophe Monniez (moc) <moc@odoo.com>
12 lines
314 B
Python
12 lines
314 B
Python
from odoo import models
|
|
|
|
|
|
class ThemeUtils(models.AbstractModel):
|
|
_inherit = ['theme.utils']
|
|
|
|
def _theme_bewise_post_copy(self, mod):
|
|
self.enable_view('website.template_footer_headline')
|
|
|
|
self.enable_asset("website.ripple_effect_scss")
|
|
self.enable_asset("website.ripple_effect_js")
|