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.
12 lines
565 B
12 lines
565 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- This XML code creates an action for the 'mail.activity'
|
|
model. It creates different views to the mail activity. -->
|
|
<record id="mail_activity_my_action" model="ir.actions.act_window">
|
|
<field name="name">My Activity</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">mail.activity</field>
|
|
<field name="view_mode">tree,form,calendar,kanban,pivot,graph</field>
|
|
<field name="domain">[('user_id','=',uid)]</field>
|
|
</record>
|
|
</odoo>
|
|
|