Skip to content
  • This project
    • Loading...
  • Sign in

Jay Mehta / zango-strapi

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Registry
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • zango-strapi
  • src
  • api
  • end-user
  • routes
  • custom-routes.js
  • jaymehta's avatar
    . · 0574f7ae
    jaymehta committed 2024-07-09 20:13:17 +0530
    0574f7ae Browse File
custom-routes.js 491 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
const routes = {
    routes: [
      {
        method: "POST",
        path: "/end-user/verify-gift-card-otp",
        handler: "api::end-user.end-user.giftCardOtp",
        config: {
          // some configuration...
        }
      },
      {
        method: "POST",
        path: "/end-user/reset-password",
        handler: "api::end-user.end-user.resetPassword",
        config: {
          // some configuration...
        }
      },
      
    ]
  };
  
  module.exports = routes;