Browse Source

Merge pull request #1250 from Tecnativa/10.0-auth_brute_force-typos

[FIX] auth_brute_force: Small typos
pull/1251/head
Pedro M. Baeza 6 years ago
committed by GitHub
parent
commit
fc11e03fa8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      auth_brute_force/__manifest__.py
  2. 3
      auth_brute_force/views/view.xml

2
auth_brute_force/__manifest__.py

@ -4,7 +4,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{ {
'name': 'Authentification - Brute-Force Filter', 'name': 'Authentification - Brute-Force Filter',
'version': '10.0.2.0.0',
'version': '10.0.2.1.0',
'category': 'Tools', 'category': 'Tools',
'summary': "Track Authentication Attempts and Prevent Brute-force Attacks", 'summary': "Track Authentication Attempts and Prevent Brute-force Attacks",
'author': "GRAP, " 'author': "GRAP, "

3
auth_brute_force/views/view.xml

@ -9,7 +9,7 @@
<field name="arch" type="xml"> <field name="arch" type="xml">
<tree <tree
decoration-warning="result == 'failed'" decoration-warning="result == 'failed'"
decoration-error="result == 'banned'"
decoration-danger="result == 'banned'"
> >
<field name="create_date"/> <field name="create_date"/>
<field name="remote"/> <field name="remote"/>
@ -44,6 +44,7 @@
<field name="login"/> <field name="login"/>
<field name="remote"/> <field name="remote"/>
<field name="remote_metadata"/> <field name="remote_metadata"/>
<field name="whitelisted" invisible="1"/>
</group> </group>
</sheet> </sheet>
</form> </form>

Loading…
Cancel
Save