Skip to content
Snippets Groups Projects
Commit 1af70a59 authored by syuilo⭐️'s avatar syuilo⭐️ Committed by GitHub
Browse files

Merge pull request #27 from Tosuke/master

[API] Fix /meta
parents 103be72f 2a383e8d
No related branches found
No related tags found
No related merge requests found
......@@ -5,3 +5,4 @@
npm-debug.log
*.pem
run.bat
api-docs.json
......@@ -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
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment