12 lines
436 B
Python
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')
|