Sharkey/src/server/web/docs.ts

22 lines
420 B
TypeScript
Raw Normal View History

2017-12-16 18:41:22 +02:00
/**
2018-04-13 00:06:18 +03:00
* Docs
2017-12-16 18:41:22 +02:00
*/
2018-04-09 12:54:03 +03:00
import * as path from 'path';
2018-04-13 00:06:18 +03:00
import * as Router from 'koa-router';
import * as send from 'koa-send';
2017-12-16 18:41:22 +02:00
2018-04-09 12:54:03 +03:00
const docs = path.resolve(`${__dirname}/../../client/docs/`);
2018-03-29 14:50:45 +03:00
2018-04-13 00:06:18 +03:00
const router = new Router();
2017-12-16 18:41:22 +02:00
2018-04-13 00:06:18 +03:00
router.get('/assets', async ctx => {
await send(ctx, `${docs}/assets`);
});
2017-12-16 18:41:22 +02:00
2018-04-13 00:06:18 +03:00
router.get(/^\/([a-z_\-\/]+?)$/, async ctx => {
await send(ctx, `${docs}/${ctx.params[0]}.html`);
});
2017-12-16 18:41:22 +02:00
2018-04-13 00:06:18 +03:00
module.exports = router;