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.
|
|
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="action_mail_sent_feeds" model="ir.actions.client"> <field name="name">Sent</field> <field name="tag">mail.wall</field> <field name="context">{ 'default_model': 'res.users', 'default_res_id': uid, 'thread_model': 'res.partner', 'needaction_menu_ref': ['mail.mail_tomefeeds', 'mail.mail_starfeeds', 'mail.mail_inboxfeeds'] }</field> <field name="params" eval=""{ 'domain': [ ('author_id.user_ids', 'in', [uid]), ('sent', '=', True), ], 'view_mailbox': True, 'show_compose_message': False }""/> <field name="help" type="html"> <p> No message found and no message sent yet. </p><p> Click on the top-right icon to compose a message. This message will be sent by email if it's an internal contact. </p> </field> </record>
<record id="mail_sentfeeds" model="ir.ui.menu"> <field name="name">Sent</field> <field name="sequence" eval="10"/> <field name="action" ref="action_mail_sent_feeds"/> <field name="parent_id" ref="mail.mail_feeds"/> </record> </data> </openerp>
|