Merge pull request #27 from Tosuke/master

[API] Fix /meta
This commit is contained in:
syuilo⭐️ 2017-01-06 22:51:17 +09:00 committed by GitHub
commit 1af70a5930
2 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View file

@ -5,3 +5,4 @@
npm-debug.log
*.pem
run.bat
api-docs.json

View file

@ -3,7 +3,8 @@
/**
* Module dependencies
*/
import Git from 'nodegit';
import prominence from 'prominence';
import git from 'git-last-commit';
/**
* Show core info
@ -14,11 +15,11 @@ import Git from 'nodegit';
module.exports = (params) =>
new Promise(async (res, rej) =>
{
const repository = await Git.Repository.open(__dirname + '/../../');
const commit = await prominence(git).getLastCommit();
res({
maintainer: config.maintainer,
commit: (await repository.getHeadCommit()).sha(),
commit: commit.shortHash,
secure: config.https.enable
});
});