Blame view

src/api/experience/routes/custom-routes.js 492 Bytes
jaymehta committed
1 2 3 4 5 6 7 8 9
const routes = {
    routes: [
      {
        method: "POST",
        path: "/experience/update-images",
        handler: "api::experience.experience.updateImage",
        config: {
          //some Configuration
        },
jaymehta committed
10 11 12 13 14 15 16 17
      },
      {
        method: "POST",
        path: "/experience/get-search-response",
        handler: "api::experience.experience.getSearchResponse",
        config: {
          //some Configuration
        },
jaymehta committed
18 19 20 21 22 23
      }
    ],
  };
  
  module.exports = routes;