From 28567acffae8e800a976d29b64488b22fad78feb Mon Sep 17 00:00:00 2001 From: KOUNOIKE Yuusuke Date: Wed, 10 Oct 2018 11:22:57 +0900 Subject: [PATCH] add missing ApiXXControllerBase --- .../gitbucket/core/controller/ApiController.scala | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/main/scala/gitbucket/core/controller/ApiController.scala b/src/main/scala/gitbucket/core/controller/ApiController.scala index 049f59bea..30d1564f0 100644 --- a/src/main/scala/gitbucket/core/controller/ApiController.scala +++ b/src/main/scala/gitbucket/core/controller/ApiController.scala @@ -1,7 +1,7 @@ package gitbucket.core.controller import gitbucket.core.api._ -import gitbucket.core.controller.api.{ApiOrganizationControllerBase, ApiRepositoryControllerBase, ApiUserControllerBase} +import gitbucket.core.controller.api._ import gitbucket.core.service._ import gitbucket.core.util.Implicits._ import gitbucket.core.util._ @@ -9,8 +9,17 @@ import gitbucket.core.plugin.PluginRegistry class ApiController extends ApiControllerBase + with ApiGitReferenceControllerBase + with ApiIssueCommentControllerBase + with ApiIssueControllerBase + with ApiIssueLabelControllerBase with ApiOrganizationControllerBase + with ApiPullRequestControllerBase + with ApiRepositoryBranchControllerBase + with ApiRepositoryCollaboratorControllerBase + with ApiRepositoryCommitControllerBase with ApiRepositoryControllerBase + with ApiRepositoryStatusControllerBase with ApiUserControllerBase with RepositoryService with AccountService