(refs #437)Show author at repo file list view

This commit is contained in:
Tomofumi Tanaka
2014-07-29 00:55:26 +09:00
parent 2bb1f6168a
commit 51a56356cb
3 changed files with 11 additions and 11 deletions

View File

@@ -64,7 +64,7 @@ trait WikiService {
if(!JGitUtil.isEmpty(git)){
JGitUtil.getFileList(git, "master", ".").find(_.name == pageName + ".md").map { file =>
WikiPageInfo(file.name, StringUtil.convertFromByteArray(git.getRepository.open(file.id).getBytes),
file.committer, file.time, file.commitId)
file.author, file.time, file.commitId)
}
} else None
}