mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data noupdate="1">
|
|
<record model="discuss.channel" id="channel_chatgpt">
|
|
<field name="name">ChatGPT Group Chat</field>
|
|
<field name="description">ChatGPT话题</field>
|
|
<field name="image_128" type="base64" file="app_chatgpt/static/description/chatgpt.png"/>
|
|
</record>
|
|
|
|
<record model="mail.message" id="module_install_notification">
|
|
<field name="model">discuss.channel</field>
|
|
<field name="res_id" ref="app_chatgpt.channel_chatgpt"/>
|
|
<field name="message_type">email</field>
|
|
<field name="subtype_id" ref="mail.mt_comment"/>
|
|
<field name="subject">Welcome to ChatGPT Group Chat</field>
|
|
<field name="body"><![CDATA[<p>Welcome to ChatGPT Group Chat.</p>
|
|
<p>Please ask me any question.</p>]]></field>
|
|
</record>
|
|
|
|
<record model="discuss.channel" id="app_chatgpt.channel_chatgpt">
|
|
<field name="group_ids" eval="[Command.link(ref('base.group_user'))]"/>
|
|
</record>
|
|
</data>
|
|
</odoo>
|