mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
22 lines
770 B
JavaScript
22 lines
770 B
JavaScript
|
const { useSwagger } = require("../../swagger/utils");
|
||
|
const { apiAdminEndpoints } = require("./admin");
|
||
|
const { apiAuthEndpoints } = require("./auth");
|
||
|
const { apiDocumentEndpoints } = require("./document");
|
||
|
const { apiSystemEndpoints } = require("./system");
|
||
|
const { apiWorkspaceEndpoints } = require("./workspace");
|
||
|
|
||
|
// All endpoints must be documented and pass through the validApiKey Middleware.
|
||
|
// How to JSDoc an endpoint
|
||
|
// https://www.npmjs.com/package/swagger-autogen#openapi-3x
|
||
|
function developerEndpoints(app, router) {
|
||
|
if (!router) return;
|
||
|
useSwagger(app);
|
||
|
apiAuthEndpoints(router);
|
||
|
apiAdminEndpoints(router);
|
||
|
apiSystemEndpoints(router);
|
||
|
apiWorkspaceEndpoints(router);
|
||
|
apiDocumentEndpoints(router);
|
||
|
}
|
||
|
|
||
|
module.exports = { developerEndpoints };
|