product URL
This commit is contained in:
@@ -106,9 +106,18 @@ def merms_account_actions():
|
||||
@jwt_required()
|
||||
def merms_account_product_url():
|
||||
data = request.get_json()
|
||||
response = ProductsService.process_request(data)
|
||||
response = ProductsService.product_url_request(data)
|
||||
return response
|
||||
|
||||
@api.route("/panel/account/products/url", methods=["POST"])
|
||||
def myproduct_url():
|
||||
data = request.get_json()
|
||||
logger.info(f"Route Product URL Data ==>>>> {data}")
|
||||
response = ProductsService.product_url_request(data)
|
||||
return response
|
||||
|
||||
|
||||
|
||||
@api.route("/panel/account/products", methods=["POST"])
|
||||
@jwt_required()
|
||||
def merms_products():
|
||||
|
||||
Reference in New Issue
Block a user