diff --git a/src/main/scala/gitbucket/core/controller/DashboardController.scala b/src/main/scala/gitbucket/core/controller/DashboardController.scala index 1516c0f..f2a0f11 100644 --- a/src/main/scala/gitbucket/core/controller/DashboardController.scala +++ b/src/main/scala/gitbucket/core/controller/DashboardController.scala @@ -108,7 +108,9 @@ case _ => condition.copy(author = Some(userName)) }, filter, - getGroupNames(userName)) + getGroupNames(userName), + getVisibleRepositories(context.loginAccount, withoutPhysicalInfo = true), + getUserRepositories(userName, withoutPhysicalInfo = true)) } private def searchPullRequests(filter: String) = { @@ -131,7 +133,9 @@ case _ => condition.copy(author = Some(userName)) }, filter, - getGroupNames(userName)) + getGroupNames(userName), + getVisibleRepositories(context.loginAccount, withoutPhysicalInfo = true), + getUserRepositories(userName, withoutPhysicalInfo = true)) } diff --git a/src/main/twirl/gitbucket/core/account/application.scala.html b/src/main/twirl/gitbucket/core/account/application.scala.html index de74c01..fd23ca6 100644 --- a/src/main/twirl/gitbucket/core/account/application.scala.html +++ b/src/main/twirl/gitbucket/core/account/application.scala.html @@ -5,56 +5,51 @@ @import gitbucket.core.view.helpers._ @html.main("Applications"){