added defaultBranch to Branches type, changed ui-bundler version for better testing experience in intellij, corrected fetchBranch functionality, wrote reducer for single branch and unit tests

This commit is contained in:
Florian Scholdei
2019-04-02 17:31:32 +02:00
parent e736add3fd
commit 7c61efb20b
7 changed files with 112 additions and 76 deletions

View File

@@ -4,5 +4,6 @@ import type {Links} from "./hal";
export type Branch = {
name: string,
revision: string,
defaultBranch?: boolean,
_links: Links
}