You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
436 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import SUPERUSER_ID
from odoo.http import Controller, request, route
class TestAssetsBundleController(Controller):
@route('/test_assetsbundle/js', type='http', auth='user')
def bundle(self):
env = request.env(user=SUPERUSER_ID)
return env['ir.ui.view']._render_template('test_assetsbundle.template1')