Working on Knockout model integration into existing authentication settings editor view.

Settings are now loading via new backend API.
This commit is contained in:
Matt Scott
2023-04-10 07:39:21 -04:00
parent 827da59ae2
commit 0912dd2805
5 changed files with 244 additions and 58 deletions

View File

@ -1829,6 +1829,13 @@ def setting_authentication():
result=result)
@admin_bp.route('/setting/authentication/api', methods=['GET', 'POST'])
@login_required
@admin_role_required
def setting_authentication_api():
return Setting().get_group('authentication')
@admin_bp.route('/templates', methods=['GET', 'POST'])
@admin_bp.route('/templates/list', methods=['GET', 'POST'])
@login_required