13 lines
348 B
Python
13 lines
348 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import http
|
|
from odoo.http import request
|
|
|
|
|
|
class HrAttendance(http.Controller):
|
|
@http.route('/hr_attendance/kiosk_keepalive', auth='user', type='json')
|
|
def kiosk_keepalive(self):
|
|
request.session.touch()
|
|
return {}
|