Initial commit: Security packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:51 +02:00
commit bb469e4763
1399 changed files with 278378 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Invite to user 2FA -->
<record model="ir.actions.server" id="action_invite_totp">
<field name="name">Invite to use two-factor authentication</field>
<field name="model_id" ref="base.model_res_users"/>
<field name="binding_model_id" ref="base.model_res_users"/>
<field name="binding_view_types">list</field>
<field name="state">code</field>
<field name="code">
action = records.action_totp_invite()
</field>
<field name="groups_id" eval="[(4, ref('base.group_erp_manager'))]"/>
</record>
<!--Action called when using the link in "Invite to use 2FA" mail-->
<record model="ir.actions.server" id="action_activate_two_factor_authentication">
<field name="name">Open two-factor authentication configuration</field>
<field name="model_id" ref="base.model_res_users"/>
<field name="state">code</field>
<field name="code">
user = env.user
action = user.action_open_my_account_settings()
</field>
<field name="groups_id" eval="[(4, ref('base.group_user'))]"/>
</record>
</odoo>

View file

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="1">
<record id="mail_template_totp_invite" model="mail.template">
<field name="name">Settings: 2Fa Invitation</field>
<field name="model_id" ref="base.model_res_users" />
<field name="email_from">{{ (object.company_id.email_formatted or user.email_formatted) }}</field>
<field name="subject">Invitation to activate two-factor authentication on your Odoo account</field>
<field name="partner_to">{{ object.partner_id.id }}</field>
<field name="lang">{{ object.partner_id.lang }}</field>
<field name="auto_delete" eval="True"/>
<field name="body_html" type="html">
<div style="margin: 0px; padding: 0px; font-size: 13px;">
<p style="margin: 0px; padding: 0px; font-size: 13px;">
Dear <t t-out="object.partner_id.name or ''"></t><br/><br/>
<t t-out="user.name or ''"></t> requested you activate two-factor authentication to protect your account.<br/><br/>
Two-factor Authentication ("2FA") is a system of double authentication.
The first one is done with your password and the second one with a code you get from a dedicated mobile app.
Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.
<p style="margin: 16px 0px 16px 0px; text-align: center;">
<a t-att-href="object.get_totp_invite_url()"
style="background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;">
Activate my two-factor Authentication
</a>
</p>
</p>
</div>
</field>
</record>
</data>
</odoo>