Move http endpoints into seperate route

This commit is contained in:
Peter Stockings
2025-07-21 22:05:58 +10:00
parent 917189b3d9
commit 2ec44252bb
12 changed files with 552 additions and 304 deletions

View File

@@ -8,10 +8,10 @@ show_edit_form=True,
show_logs=True,
show_client=True,
show_history=True,
edit_url=url_for('http_function_editor', function_id=function_id),
cancel_url=url_for('dashboard_http_functions'),
logs_url=url_for('get_http_function_logs', function_id=function_id),
history_url=url_for('get_http_function_history', function_id=function_id)) }}
edit_url=url_for('http.http_function_editor', function_id=function_id),
cancel_url=url_for('http.dashboard_http_functions'),
logs_url=url_for('http.get_http_function_logs', function_id=function_id),
history_url=url_for('http.get_http_function_history', function_id=function_id)) }}
<div class="mx-auto w-full pt-4" id="client-u{{ user_id }}-f{{ function_id }}">
</div>