This commit is contained in:
CHIEFSOFT\ameye
2025-08-12 11:59:47 -04:00
parent 14a5e6101a
commit 77f1028c70
7 changed files with 124 additions and 3 deletions
+17 -1
View File
@@ -21,22 +21,34 @@ class SubscriptionService(BaseService):
subscription_products_data = {
"current_product": {
"display_name": "Current Subscriptions",
"display_name": "Subscriptions",
"subs":[
'Post Jobs',
'advanced instructors search',
'invite candidates',
'post events',
'Cancel anythime'
],
"next_payment":'2025-10-15 11:00:07.47214'
},
"options": {
"starter":{
"package_uid" : "cd2c0a4d-9ad4-472e-96f5-28d10c06916f",
"display_name" : "Starter",
"monthly" : 5.99,
"items" : ['Post Jobs','advanced instructors search','invite candidates','post events',
'Cancel anythime']
},
"basic": {
"package_uid": "ef2ffa1c-9272-42cd-9d33-0e614047b4f8",
"display_name": "Basic",
"monthly": 12.99,
"items": ['Post Jobs', 'advanced instructors search', 'invite candidates', 'post events',
'Cancel anythime']
},
"premium": {
"package_uid": "64bf48f6-1e7f-402e-8ff0-76f4ce0f2055",
"display_name": "Premium",
"monthly": 20.99,
"items": ['Post Jobs', 'advanced instructors search', 'invite candidates', 'post events',
@@ -52,3 +64,7 @@ class SubscriptionService(BaseService):
logger.error(f"An error occurred while getting dashboard data: {str(e)}", exc_info=True)
return jsonify({"message": "Internal Server Error"}), 500
#
#
#