Add REST endpoint to get the reflog of a branch

Change-Id: I9c0b3fa430b46762774bfa43710c3bb01fd2799e
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2014-07-04 12:59:19 +02:00
parent 49098b8717
commit 87504d9a59
3 changed files with 186 additions and 0 deletions

View File

@@ -59,6 +59,7 @@ public class Module extends RestApiModule {
get(BRANCH_KIND).to(GetBranch.class);
delete(BRANCH_KIND).to(DeleteBranch.class);
install(new FactoryModuleBuilder().build(CreateBranch.Factory.class));
get(BRANCH_KIND, "reflog").to(GetReflog.class);
child(BRANCH_KIND, "files").to(FilesCollection.class);
get(FILE_KIND, "content").to(GetContent.class);