Commit 9a208466 authored by harshavardhan.c's avatar harshavardhan.c

Added some enhancements in support lens module

parent 93b0c18b
......@@ -22,6 +22,7 @@ class Endpoints:
edit_support_case = base_url + "/support_case/edit"
get_support_case_table_details = base_url + "/support_case/fetch_table"
get_dashboard_details = base_url + "/support_case/get_dashboard_details"
get_progress_cases = base_url + "/support_case/get_progress_cases"
class DBMapping:
......
......@@ -96,3 +96,16 @@ def get_dashboard_details():
except Exception as e:
logger.exception("Exception -> %s" % str(e))
return final_json
@supportcase_setup_configuration.route(Endpoints.get_progress_cases, methods=['POST'])
@apply_encryption
def get_dashboard_category_details():
final_json = {"status": StatusMessages.FAILED, "message": StatusMessages.FAILED}
try:
input_data = request.data
# input_data = request.get_json()
final_json = handler_obj.get_dashboard_category_details(input_data)
except Exception as e:
logger.exception("Exception -> %s" % str(e))
return final_json
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment