You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
571 B
16 lines
571 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Record for adding client action on memory usage menu -->
|
|
<record id="action_storage_dashboard" model="ir.actions.client">
|
|
<field name="name">Memory Usage</field>
|
|
<field name="tag">storage_dashboard_tag</field>
|
|
</record>
|
|
<!-- Adding MemoryUsage menu on Administration -->
|
|
<menuitem
|
|
id="storage_dashboard_menu"
|
|
name="Memory Usage"
|
|
parent="base.menu_administration"
|
|
action="action_storage_dashboard"
|
|
sequence="200"
|
|
/>
|
|
</odoo>
|
|
|