diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2026-02-27 09:37:34 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2026-02-27 09:37:34 +0700 |
| commit | 523491c16ccac66b2464654bdd1969b444459466 (patch) | |
| tree | b4274f01b711e45d31b1b30b042d812cbf0d6d9c /indoteknik_custom/views/token_log.xml | |
| parent | 49863418d3cf9aea12cd9594ef5351648664027c (diff) | |
| parent | 68040bdf60a35486ed1015421679310df742b74d (diff) | |
Merge branch 'feature/api-altama-matches-so' into odoo-backup
Diffstat (limited to 'indoteknik_custom/views/token_log.xml')
| -rw-r--r-- | indoteknik_custom/views/token_log.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/indoteknik_custom/views/token_log.xml b/indoteknik_custom/views/token_log.xml new file mode 100644 index 00000000..77e6dd48 --- /dev/null +++ b/indoteknik_custom/views/token_log.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo> + <record id="token_log_tree" model="ir.ui.view"> + <field name="name">token.log.tree</field> + <field name="model">token.log</field> + <field name="arch" type="xml"> + <tree editable="top" default_order="create_date desc"> + <field name="token"/> + <field name="expires_at"/> + <field name="token_from"/> + <field name="created_at"/> + <field name="created_by"/> + <field name="source"/> + <field name="is_active" widget="boolean_toggle"/> + </tree> + </field> + </record> + + <record id="token_log_action" model="ir.actions.act_window"> + <field name="name">Token Log</field> + <field name="type">ir.actions.act_window</field> + <field name="res_model">token.log</field> + <field name="view_mode">tree,form</field> + </record> + + <menuitem + action="token_log_action" + id="token_log" + parent="base.menu_users" + name="Token Log" + sequence="1" + /> +</odoo> |
