Compare commits

..

No commits in common. "9cc50078d10aeb4a332ac77cb45f8618a1e5775e" and "7728759bcd9cf311149ce80f356bdb027b402dd4" have entirely different histories.

3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@odit/lfk-backend",
"version": "0.0.8",
"version": "0.0.7",
"main": "src/app.ts",
"repository": "https://git.odit.services/lfk/backend",
"author": {

View File

@ -15,7 +15,7 @@ createExpressServer({
development: config.development,
cors: true,
routePrefix: "/api",
controllers: [`${__dirname}/../src/controllers/*.${CONTROLLERS_FILE_EXTENSION}`],
controllers: [`${__dirname}/controllers/*.${CONTROLLERS_FILE_EXTENSION}`],
});
const storage = getMetadataArgsStorage();
@ -60,7 +60,7 @@ const spec = routingControllersToSpec(
info: {
description: "The the backend API for the LfK! runner system.",
title: "LfK! Backend API",
version: "0.0.8",
version: "0.0.5",
},
}
);

View File

@ -51,7 +51,7 @@ export default async (app: Application) => {
info: {
description: "The the backend API for the LfK! runner system.",
title: "LfK! Backend API",
version: "0.0.8",
version: "0.0.5",
},
}
);