8 lines
303 B
Python
8 lines
303 B
Python
|
|
from odoo import http
|
||
|
|
from odoo.http import request
|
||
|
|
|
||
|
|
class MetabaseDashboard(http.Controller):
|
||
|
|
|
||
|
|
@http.route('/metabase/dashboard', auth='user', type='http', csrf=False)
|
||
|
|
def metabase_dashboard(self, **kwargs):
|
||
|
|
return request.render('xf_doc_approval_extension.metabase_dashboard_page')
|