Odoo-Tutorial/todo_app/controllers/controllers.py
2025-02-11 17:29:37 +07:00

8 lines
246 B
Python

# -*- coding: utf-8 -*-
from odoo import http
from odoo.http import request, route, Controller
class OwlApp(Controller):
@http.route(['/owl-app'], type='http', auth='public')
def root(self):
return request.render('todo_app.root')