summaryrefslogtreecommitdiff
path: root/addons/auth_totp/models/ir_http.py
blob: 9bae70facc3239456ca9899f42b8ea36b9158a15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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