reinitializing codebase and resuming development

This commit is contained in:
Shibi Chakkaravarthy
2026-09-27 00:48:18 +05:30
parent 5e894627f5
commit be7211ac28
23 changed files with 744 additions and 45 deletions
+30
View File
@@ -213,4 +213,34 @@ export default {
},
},
},
"/partner/{id}/approve": {
tags: ["Partner"],
summary: "Approve a Partner added by an Executive",
parameters: [
{
in: "path",
name: "id",
required: true,
schema: {
type: "string",
},
},
],
responses: {
200: {
description: "OK",
content: {},
},
},
},
"/partner/unapproved": {
tags: ["Partner"],
summary: "Get all Unapproved Partners",
responses: {
200: {
description: "OK",
content: {},
},
},
},
};