We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb165d commit 00cf509Copy full SHA for 00cf509
readme.md
@@ -56,7 +56,7 @@ language: EN_US
56
### API
57
```text
58
GET / redirection to /[APIVersion]/
59
-GET /api-docs swagger UI
+GET /api-docs (dev. env. only) swagger UI
60
61
POST /[APIVersion]/signin signin
62
POST /[APIVersion]/login login
src/routes/index.ts
@@ -13,7 +13,7 @@ const baseUrl = Config.api.path,
13
if (process.env.ENV === 'dev') PopulationServices.default();
14
15
export const Routes = express.Router()
16
- .use('/', Swagger)
+ //.use('/', Swagger)
17
18
.all('/*', [HeaderMiddleware.enableCORS])
19
.get('/', (req: express.Request, res: express.Response) => {
0 commit comments