Skip to content

Routes list

Adrian Harabula edited this page May 28, 2017 · 8 revisions

Products routes

VERB URI ACTION ROUTE
GET /products ProductsController@getProductsList products.listproducts
GET /product/{id} ProductsController@getProduct products.singleview

My account routes

VERB URI ACTION ROUTE
GET /my/account User\UserSettingsController@index my.account.index
GET /my/account/change-password User\UserSettingsController@getEditPassword my.account.change-password
POST /my/account/change-password User\UserSettingsController@postEditPassword my.account.change-password

Favored products routes

VERB URI ACTION ROUTE
GET /my/products User\UserProductsController@getFavoriteProducts my.products.listproducts
POST /my/product/{id}/add User\UserProductsController@postToggleFavoriteProduct my.product.add
DELETE /my/product/{id}/delete User\UserProductsController@postToggleFavoriteProduct my.product.delete