Skip to content

Commit

Permalink
Merge pull request #2165 from kounoike/pr-fixup-2163
Browse files Browse the repository at this point in the history
add missing ApiXXControllerBase
  • Loading branch information
takezoe committed Oct 13, 2018
2 parents a811421 + 28567ac commit 47f1241
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/main/scala/gitbucket/core/controller/ApiController.scala
@@ -1,16 +1,25 @@
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._
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
Expand Down

0 comments on commit 47f1241

Please sign in to comment.