<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <data>
        <record id="action_xeno_hr_dashboard" model="ir.actions.client">
            <field name="name">Dashboard</field>
            <field name="tag">xeno_hr_dashboard</field>
        </record>
    </data>
    <data noupdate="1">
        <!-- Group container: "HR Dashboard" and "My Dashboard" both point at
             the same single dashboard page (there's no separate personal-scope
             variant built), kept as two labeled entries to match the
             requested Dashboard > HR Dashboard > My Dashboard menu structure,
             not two different pages. -->
        <menuitem id="menu_xeno_hr_dashboard"
                  name="Dashboard"
                  parent="xeno_leave.menu_xeno_hr_root"
                  sequence="1"/>

        <menuitem id="menu_xeno_hr_dashboard_main"
                  name="HR Dashboard"
                  parent="menu_xeno_hr_dashboard"
                  action="action_xeno_hr_dashboard"
                  sequence="1"/>

        <menuitem id="menu_xeno_hr_dashboard_my"
                  name="My Dashboard"
                  parent="menu_xeno_hr_dashboard"
                  action="action_xeno_hr_dashboard"
                  sequence="2"/>
    </data>
</odoo>
