Blame view

src/api/end-user/routes/custom-routes.js 288 Bytes
jaymehta committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
const routes = {
    routes: [
      {
        method: "POST",
        path: "/end-user/verify-gift-card-otp",
        handler: "api::end-user.end-user.giftCardOtp",
        config: {
          // some configuration...
        }
      },
      
    ]
  };
  
  module.exports = routes;