23 lines
751 B
Python
23 lines
751 B
Python
from flask import Blueprint
|
|
from cachetools.func import lru_cache
|
|
|
|
from config_app.config_endpoints.common import render_page_template
|
|
from config_app.config_endpoints.api.discovery import generate_route_data
|
|
from config_app.config_endpoints.api import no_cache
|
|
|
|
setup_web = Blueprint('setup_web', __name__, template_folder='templates')
|
|
|
|
|
|
@lru_cache(maxsize=1)
|
|
def _get_route_data():
|
|
return generate_route_data()
|
|
|
|
|
|
def render_page_template_with_routedata(name, *args, **kwargs):
|
|
return render_page_template(name, _get_route_data(), *args, **kwargs)
|
|
|
|
|
|
@no_cache
|
|
@setup_web.route('/', methods=['GET'], defaults={'path': ''})
|
|
def index(path, **kwargs):
|
|
return render_page_template_with_routedata('index.html', js_bundle_name='configapp', **kwargs)
|