payments
This commit is contained in:
@@ -196,13 +196,26 @@ def recent_actions(current_user):
|
||||
@app.route("/panel/account/products/url")
|
||||
@token_required
|
||||
def product_urls(current_user):
|
||||
action_data = {
|
||||
url_data = {
|
||||
"last_update": datetime.datetime.utcnow(),
|
||||
"url": [
|
||||
{"no": "1", "description": "Welcome to MERMS" , "date": "10-10-2010 11:00 AM", "status": 'completed'},
|
||||
{"no": "2", "description": "Personal Blog Setup" , "date": "10-10-2010 11:30 AM", "status": 'processing'},
|
||||
{"no": "3", "description": "Web Traffic Analysis" , "date": "10-12-2010 11:30 AM", "status": 'verifying'},
|
||||
]
|
||||
}
|
||||
return jsonify(action_data=action_data)
|
||||
return jsonify(url_data=url_data)
|
||||
|
||||
@app.route("/panel/account/payments")
|
||||
@token_required
|
||||
def product_urls(current_user):
|
||||
payments = {
|
||||
"last_update": datetime.datetime.utcnow(),
|
||||
"url": [
|
||||
{"no": "1", "description": "Welcome to MERMS" , "date": "10-10-2010 11:00 AM", "status": 'completed'},
|
||||
{"no": "2", "description": "Personal Blog Setup" , "date": "10-10-2010 11:30 AM", "status": 'processing'},
|
||||
{"no": "3", "description": "Web Traffic Analysis" , "date": "10-12-2010 11:30 AM", "status": 'verifying'},
|
||||
]
|
||||
}
|
||||
return jsonify(payments_data=payments_data)
|
||||
##. Description Date Status "10-10-2021 10 AM"
|
||||
|
||||
Reference in New Issue
Block a user