summaryrefslogtreecommitdiff
path: root/indoteknik_custom/views/token_log.xml
diff options
context:
space:
mode:
authorAzka Nathan <darizkyfaz@gmail.com>2026-02-27 09:37:34 +0700
committerAzka Nathan <darizkyfaz@gmail.com>2026-02-27 09:37:34 +0700
commit523491c16ccac66b2464654bdd1969b444459466 (patch)
treeb4274f01b711e45d31b1b30b042d812cbf0d6d9c /indoteknik_custom/views/token_log.xml
parent49863418d3cf9aea12cd9594ef5351648664027c (diff)
parent68040bdf60a35486ed1015421679310df742b74d (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.xml33
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>