Prining data added

This commit is contained in:
dev-chiefworks
2023-01-12 18:57:57 -05:00
parent fd893e019e
commit 7e23bf74b0
4 changed files with 140 additions and 32 deletions
+17 -6
View File
@@ -40,13 +40,24 @@ $routes->get('/chiefsoft/site/blogdata', 'Chiefsoft::blogdata'); // when no lim
$routes->post('/chiefsoft/site/contact', 'Chiefsoft::contact');
//MERMS MYFIT
$routes->get('/mermsmemr/myfit/country', 'Myfit::country');
$routes->get('/mermsmemr/myfit/blogdata/(:any)', 'Myfit::blogdata/$1');
$routes->get('/mermsmemr/myfit/blogdata', 'Myfit::blogdata'); // when no limit is sent
$routes->get('/mermsmemr/myfit/faq', 'Myfit::faq');
$routes->post('/mermsmemr/myfit/contact', 'Myfit::contact');
$routes->get('/mermsmemr/myfit/pricing', 'Myfit::pricing');
$routes->get('/en/desktop/api/v2/myfit/country', 'Myfit::country');
$routes->get('/en/desktop/api/v2/myfit/blogdata/(:any)', 'Myfit::blogdata/$1');
$routes->get('/en/desktop/api/v2/myfit/blogdata', 'Myfit::blogdata'); // when no limit is sent
$routes->get('/en/desktop/api/v2/myfit/faq', 'Myfit::faq');
$routes->post('/en/desktop/api/v2/myfit/contact', 'Myfit::contact');
$routes->get('/en/desktop/api/v2/myfit/pricing', 'Myfit::pricing');
//MYFIT USERS
$routes->post('/en/desktop/api/v2/myfituser/login', 'Myfituser::login');
$routes->post('/en/desktop/api/v2/myfituser/account', 'Myfituser::account');
/*
https://devapi.mermsemr.com/en/desktop/api/v2/myfit/country GET
https://devapi.mermsemr.com/en/desktop/api/v2/myfit/blogdata/7 GET
https://devapi.mermsemr.com/en/desktop/api/v2/myfit/contact POST
https://devapi.mermsemr.com/en/desktop/api/v2/myfit/pricing GET
https://devapi.mermsemr.com/en/desktop/api/v2/myfit/faq GET
*/
/*