From 5acb199fb7e97fb83fe78cc8b6ff59395756ef80 Mon Sep 17 00:00:00 2001 From: Andrea Gidalti Date: Mon, 6 Nov 2023 19:13:24 +0000 Subject: [PATCH] [IMP] hr_employee_firstname: rename hooks file --- hr_employee_firstname/__init__.py | 2 +- hr_employee_firstname/__manifest__.py | 2 +- hr_employee_firstname/{init_hook.py => hooks.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename hr_employee_firstname/{init_hook.py => hooks.py} (100%) diff --git a/hr_employee_firstname/__init__.py b/hr_employee_firstname/__init__.py index 118a06217219..c0d9f3d12f7d 100644 --- a/hr_employee_firstname/__init__.py +++ b/hr_employee_firstname/__init__.py @@ -1,4 +1,4 @@ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from . import models -from .init_hook import post_init_hook +from .hooks import post_init_hook diff --git a/hr_employee_firstname/__manifest__.py b/hr_employee_firstname/__manifest__.py index 68585036ce41..46be059cfbf8 100644 --- a/hr_employee_firstname/__manifest__.py +++ b/hr_employee_firstname/__manifest__.py @@ -8,7 +8,7 @@ "Fekete Mihai (Forest and Biomass Services Romania), " "Onestein, " "Odoo Community Association (OCA)", - "maintainer": "Savoir-faire Linux", + "maintainers": ["Savoir-faire Linux", "luisg123v"], "website": "https://github.com/OCA/hr", "license": "AGPL-3", "category": "Human Resources", diff --git a/hr_employee_firstname/init_hook.py b/hr_employee_firstname/hooks.py similarity index 100% rename from hr_employee_firstname/init_hook.py rename to hr_employee_firstname/hooks.py