mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-23 11:12:03 +02:00
12 lines
348 B
Python
12 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 {}
|