mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
w
This commit is contained in:
parent
42d4e6610f
commit
e74c1f2ac6
@ -31,7 +31,7 @@ export default (endpoint: string | Endpoint, user: IUser, app: IApp, data: any,
|
||||
}
|
||||
}
|
||||
|
||||
let exec = require(`${__dirname}/endpoints/${ep.name}`);
|
||||
let exec = require(`${__dirname}/endpoints/${ep.name}`).default;
|
||||
|
||||
if (ep.withFile && file) {
|
||||
exec = exec.bind(null, file);
|
||||
|
@ -38,7 +38,7 @@ const client = require('../../../../built/client/meta.json');
|
||||
/**
|
||||
* Show core info
|
||||
*/
|
||||
export default (params: any) => new Promise(async (res, rej) => {
|
||||
export default () => new Promise(async (res, rej) => {
|
||||
const meta: any = (await Meta.findOne()) || {};
|
||||
|
||||
res({
|
||||
|
@ -205,4 +205,11 @@ router.get('/*/api/entities/*', async ctx => {
|
||||
}));
|
||||
});
|
||||
|
||||
router.get('/*/*', async ctx => {
|
||||
const lang = ctx.params[0];
|
||||
const doc = ctx.params[1];
|
||||
|
||||
await ctx.render('../../../../src/client/docs/' + doc + '.' + lang, await genVars(lang));
|
||||
});
|
||||
|
||||
export default router;
|
||||
|
Loading…
Reference in New Issue
Block a user