1. Use EDB's repo for react-data-grid instead of the personal repo.

2. Improved searching in the Search Objects.
3. Fixed react warnings in the query tool.
4. Fixed some SonarQube issues.
This commit is contained in:
Aditya Toshniwal
2022-09-13 19:13:33 +05:30
committed by Akshay Joshi
parent ab5d53f3b1
commit 2de965d710
18 changed files with 47 additions and 47 deletions

View File

@@ -923,7 +923,7 @@ def signal_runtime():
if hasattr(config, 'SECURITY_CHANGEABLE') and config.SECURITY_CHANGEABLE:
@blueprint.route("/change_password", endpoint="change_password",
methods=['GET', 'POST'])
methods=['POST'])
@pgCSRFProtect.exempt
@login_required
def change_password():
@@ -1011,7 +1011,7 @@ if hasattr(config, 'SECURITY_RECOVERABLE') and config.SECURITY_RECOVERABLE:
user=user, token=token)
@blueprint.route("/reset_password", endpoint="forgot_password",
methods=['GET', 'POST'])
methods=['POST'])
@pgCSRFProtect.exempt
@anonymous_user_required
def forgot_password():
@@ -1088,7 +1088,7 @@ if hasattr(config, 'SECURITY_RECOVERABLE') and config.SECURITY_RECOVERABLE:
'/reset_password' + slash_url_suffix(
'/browser/reset_password', '<token>'
),
methods=['GET', 'POST'],
methods=['POST'],
endpoint='reset_password'
)
@pgCSRFProtect.exempt