mirror of https://github.com/OCA/web.git
13 lines
358 B
Python
13 lines
358 B
Python
# Copyright 2019 Alexandre Díaz <dev@redneboa.es>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from .models.res_company import URL_BASE
|
|
|
|
|
|
def uninstall_hook(env):
|
|
env["ir.attachment"].search([("url", "=like", f"{URL_BASE}%")]).unlink()
|
|
|
|
|
|
def post_init_hook(env):
|
|
env["res.company"].search([]).scss_create_or_update_attachment()
|