mirror of
https://github.com/bringout/oca-ocb-security.git
synced 2026-04-24 22:02:07 +02:00
Initial commit: Security packages
This commit is contained in:
commit
bb469e4763
1399 changed files with 278378 additions and 0 deletions
13
odoo-bringout-oca-ocb-auth_totp/auth_totp/models/ir_http.py
Normal file
13
odoo-bringout-oca-ocb-auth_totp/auth_totp/models/ir_http.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from odoo import models
|
||||
from odoo.http import request
|
||||
|
||||
class IrHttp(models.AbstractModel):
|
||||
_inherit = 'ir.http'
|
||||
|
||||
def session_info(self):
|
||||
info = super().session_info()
|
||||
# because frontend session_info uses this key and is embedded in
|
||||
# the view source
|
||||
info["user_id"] = request.session.uid,
|
||||
return info
|
||||
Loading…
Add table
Add a link
Reference in a new issue