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.
91 lines
4.1 KiB
91 lines
4.1 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- ********************************************************************** -->
|
|
<!--Authentification - Track And Prevent Brute-force Attack module for Odoo -->
|
|
<!--Copyright (C) 2015-Today GRAP (http://www.grap.coop) -->
|
|
<!--@author Sylvain LE GAL (https://twitter.com/legalsylvain) -->
|
|
|
|
<!--This program is free software: you can redistribute it and/or modify -->
|
|
<!--it under the terms of the GNU Affero General Public License as -->
|
|
<!--published by the Free Software Foundation, either version 3 of the -->
|
|
<!--License, or (at your option) any later version. -->
|
|
|
|
<!--This program is distributed in the hope that it will be useful, -->
|
|
<!--but WITHOUT ANY WARRANTY; without even the implied warranty of -->
|
|
<!--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
|
|
<!--GNU Affero General Public License for more details. -->
|
|
|
|
<!--You should have received a copy of the GNU Affero General Public License-->
|
|
<!--along with this program. If not, see <http://www.gnu.org/licenses/>. -->
|
|
<!-- ********************************************************************** -->
|
|
<openerp>
|
|
<data>
|
|
|
|
<!-- Model: res.authentication.attempt -->
|
|
<record id="view_res_authentication_attempt_tree" model="ir.ui.view">
|
|
<field name="model">res.authentication.attempt</field>
|
|
<field name="arch" type="xml">
|
|
<tree colors="orange: result == 'failed';red: result == 'banned'">
|
|
<field name="attempt_date" />
|
|
<field name="remote" />
|
|
<field name="login" />
|
|
<field name="result" />
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_res_authentication_attempt_search" model="ir.ui.view">
|
|
<field name="model">res.authentication.attempt</field>
|
|
<field name="arch" type="xml">
|
|
<search>
|
|
<field name="login"/>
|
|
<filter name="filter_no_success" string="Without Success" domain="[('result','!=', 'successfull')]"/>
|
|
<filter name="filter_banned" string="Banned" domain="[('result','=', 'banned')]"/>
|
|
<filter name="filter_failed" string="Failed" domain="[('result','=', 'failed')]"/>
|
|
<filter name="filter_successful" string="Successful" domain="[('result','=', 'successfull')]"/>
|
|
</search>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- Model: res.banned.remote -->
|
|
<record id="view_res_banned_remote_tree" model="ir.ui.view">
|
|
<field name="model">res.banned.remote</field>
|
|
<field name="arch" type="xml">
|
|
<tree colors="gray: active==False">
|
|
<field name="name" />
|
|
<field name="ban_date" />
|
|
<field name="remote" />
|
|
<field name="active" invisible="1" />
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_res_banned_remote_form" model="ir.ui.view">
|
|
<field name="model">res.banned.remote</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<sheet>
|
|
<group>
|
|
<field name="name" />
|
|
<field name="ban_date" />
|
|
|
|
<field name="remote" />
|
|
<field name="active" />
|
|
<field name="description" />
|
|
<field name="attempt_ids" />
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_res_banned_remote_search" model="ir.ui.view">
|
|
<field name="model">res.banned.remote</field>
|
|
<field name="arch" type="xml">
|
|
<search>
|
|
<field name="remote"/>
|
|
</search>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|