fix backend
This commit is contained in:
@@ -479,8 +479,9 @@ def get_office_accoint_view():
|
||||
filters = {
|
||||
'member_uid': request.args.get('member_uid')
|
||||
}
|
||||
result = OfficeDashboardService.get_office_account_view(filters)
|
||||
return jsonify(result)
|
||||
response = OfficeDashboardService.get_office_account_view(filters)
|
||||
# return response
|
||||
return jsonify(response)
|
||||
|
||||
@api.route('/office/custom-templates', methods=['GET'])
|
||||
def get_custom_templates():
|
||||
@@ -491,6 +492,7 @@ def get_custom_templates():
|
||||
'page': request.args.get('page', 1),
|
||||
'limit': request.args.get('limit', 20)
|
||||
}
|
||||
logger.info("CALLING :: Getting office custom templates")
|
||||
result = OfficeDashboardService.get_office_custom_templates(filters)
|
||||
return jsonify(result)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user