Skip to content

Commit

Permalink
refactor: ♻️ remove unused routes
Browse files Browse the repository at this point in the history
remove unused routes

Ref: #71
  • Loading branch information
PritamIT2023 committed Oct 22, 2024
1 parent 1b3533a commit 811bc49
Showing 1 changed file with 1 addition and 42 deletions.
43 changes: 1 addition & 42 deletions service/routes.registry.ts
Original file line number Diff line number Diff line change
@@ -1,44 +1,3 @@
const RoutesRegistry = {
testGetAllAPI: {
name: "Test Get All API",
url: "wrappidall",
authRequired: false,
entityRef: "testGetAllAPI",
reqMethod: "get",
controllerRef: "testGetAllFunc",
},
testGetAPI: {
name: "Test Get API",
url: "wrappid/:id",
authRequired: false,
entityRef: "testGetAllAPI",
reqMethod: "get",
controllerRef: "testGetFunc",
},
testPostAPI: {
name: "Test Get All API",
url: "wrappid",
authRequired: false,
entityRef: "testGetAllAPI",
reqMethod: "post",
controllerRef: "testPostFunc",
},
testPutAPI: {
name: "Test Get All API",
url: "wrappid/:id",
authRequired: false,
entityRef: "testGetAllAPI",
reqMethod: "put",
controllerRef: "testPutFunc",
},
testPatchAPI: {
name: "Test Get All API",
url: "wrappid/:id",
authRequired: false,
entityRef: "testGetAllAPI",
reqMethod: "patch",
controllerRef: "testPatchFunc",
},
};
const RoutesRegistry = {};

export default RoutesRegistry;

0 comments on commit 811bc49

Please sign in to comment.