odoo18/addons_extensions/employee_bridge/__manifest__.py

38 lines
1.1 KiB
Python

# -*- coding: utf-8 -*-
{
"name": "Onboarding",
"summary": "Employee-side onboarding bridge for JOD and onboarding links",
"description": """
Provides an employee-owned bridge record that can be used without
installing recruitment or ATS modules.
""",
"author": "FTPROTECH",
"website": "https://www.ftprotech.com",
"category": "Human Resources",
"version": "1.0",
"depends": [
"hr_employee_extended",
"mail",
"website",
],
"data": [
"data/ir_sequence_data.xml",
"data/onboarding_attachment_data.xml",
"data/mail_template.xml",
"data/template.xml",
"security/ir.model.access.csv",
"wizards/employee_bridge_attachment_wizard.xml",
"views/recruitment_employee_bridge_views.xml",
"views/onboarding_attachment_views.xml",
"views/hr_employee_views.xml",
],
"license": "LGPL-3",
"assets": {
"web.assets_frontend": [
"employee_bridge/static/src/js/post_onboarding_form.js",
],
},
"application": False,
"installable": True,
}