rollback changes on branches overview

This commit is contained in:
Eduard Heimbuch
2020-09-17 11:28:37 +02:00
parent 16b2f61924
commit 08fccb180b
3 changed files with 3 additions and 8 deletions

View File

@@ -52,9 +52,7 @@
"overview": {
"title": "Übersicht aller verfügbaren Branches",
"noBranches": "Keine Branches gefunden.",
"createButton": "Branch erstellen",
"lastModifier": "von",
"lastModified": "Aktualisiert"
"createButton": "Branch erstellen"
},
"table": {
"branches": "Branches"

View File

@@ -52,9 +52,7 @@
"overview": {
"title": "Overview of all branches",
"noBranches": "No branches found.",
"createButton": "Create Branch",
"lastModifier": "by",
"lastModified": "Updated"
"createButton": "Create Branch"
},
"table": {
"branches": "Branches"

View File

@@ -123,8 +123,7 @@ public class BranchRootResource {
public Response get(
@PathParam("namespace") String namespace,
@PathParam("name") String name,
@PathParam("branch") String branchName,
@QueryParam("fullInformation") @DefaultValue("false") boolean fullInformation
@PathParam("branch") String branchName
) throws IOException {
NamespaceAndName namespaceAndName = new NamespaceAndName(namespace, name);
try (RepositoryService repositoryService = serviceFactory.create(namespaceAndName)) {