Odoo-Tutorial/awesome_owl/controllers/controllers.py
2025-02-13 10:22:31 +07:00

10 lines
310 B
Python

from odoo import http
from odoo.http import request, route
class OwlPlayground(http.Controller):
@http.route(['/awesome_owl'], type='http', auth='public')
def show_playground(self):
"""
Renders the owl playground page
"""
return request.render('awesome_owl.playground')