mirror of
https://github.com/odoo/runbot.git
synced 2025-03-17 00:15:47 +07:00

- code in the various menus added over time through the UI (queues, configuration, ...) - update / improve PR layout a tick - fix "outstanding forward ports" count on the dashboard - improve hover title / help on dashboard - add date of last modification (usually date of success / failure) - make casing more coherent (everything lowercase) - add explicit note that UTC date on staged at label is staged at datetime - rediscover yet again that the staging information is when hovering on the staging *except the staged at label* - improve `PullRequest.unstage` to always insert the PR at the start of the reason when cancelling the staging, for clarity / traceability Closes #560, closes #609
44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<odoo>
|
|
<record id="action_overrides" model="ir.actions.act_window">
|
|
<field name="name">CI / statuses overrides</field>
|
|
<field name="res_model">res.partner.override</field>
|
|
</record>
|
|
<record id="tree_overrides" model="ir.ui.view">
|
|
<field name="name">Overrides List</field>
|
|
<field name="model">res.partner.override</field>
|
|
<field name="arch" type="xml">
|
|
<tree editable="bottom">
|
|
<field name="context"/>
|
|
<field name="repository_id"/>
|
|
<field name="partner_ids" widget="many2many_tags"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_review" model="ir.actions.act_window">
|
|
<field name="name">Review Rights</field>
|
|
<field name="res_model">res.partner.review</field>
|
|
<field name="context">{'search_default_group_by_repository': True}</field>
|
|
</record>
|
|
<record id="tree_review" model="ir.ui.view">
|
|
<field name="name">Review Rights</field>
|
|
<field name="model">res.partner.review</field>
|
|
<field name="arch" type="xml">
|
|
<tree editable="bottom">
|
|
<field name="repository_id"/>
|
|
<field name="partner_id"/>
|
|
<field name="review"/>
|
|
<field name="self_review"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<menuitem name="Configuration" id="menu_configuration" parent="runbot_merge_menu"/>
|
|
<menuitem name="CI Overrides" id="menu_configuration_overrides"
|
|
parent="menu_configuration"
|
|
action="action_overrides"/>
|
|
<menuitem name="Review Rights" id="menu_configuration_review"
|
|
parent="menu_configuration"
|
|
action="action_review"/>
|
|
</odoo>
|