Merge remote-tracking branch 'upstream/master' into pr-implemt-apis

This commit is contained in:
KOUNOIKE
2018-12-08 19:13:12 +09:00
2 changed files with 15 additions and 12 deletions

View File

@@ -3,10 +3,10 @@ import com.typesafe.sbt.pgp.PgpKeys._
val Organization = "io.github.gitbucket"
val Name = "gitbucket"
val GitBucketVersion = "4.29.0"
val GitBucketVersion = "4.30.0-SNAPSHOT"
val ScalatraVersion = "2.6.3"
val JettyVersion = "9.4.11.v20180605"
val JgitVersion = "5.1.1.201809181055-r"
val JgitVersion = "5.1.2.201810061102-r"
lazy val root = (project in file("."))
.enablePlugins(SbtTwirl, ScalatraPlugin)
@@ -44,7 +44,7 @@ libraryDependencies ++= Seq(
"org.apache.commons" % "commons-email" % "1.5",
"org.apache.httpcomponents" % "httpclient" % "4.5.6",
"org.apache.sshd" % "apache-sshd" % "2.1.0" exclude ("org.slf4j", "slf4j-jdk14"),
"org.apache.tika" % "tika-core" % "1.19",
"org.apache.tika" % "tika-core" % "1.19.1",
"com.github.takezoe" %% "blocking-slick-32" % "0.0.10",
"com.novell.ldap" % "jldap" % "2009-10-07",
"com.h2database" % "h2" % "1.4.196",

View File

@@ -1,12 +1,7 @@
package gitbucket.core.controller
import gitbucket.core.api._
import gitbucket.core.controller.api.{
ApiIssueLabelControllerBase,
ApiOrganizationControllerBase,
ApiRepositoryControllerBase,
ApiUserControllerBase
}
import gitbucket.core.controller.api._
import gitbucket.core.service._
import gitbucket.core.util.Implicits._
import gitbucket.core.util._
@@ -14,10 +9,18 @@ import gitbucket.core.plugin.PluginRegistry
class ApiController
extends ApiControllerBase
with ApiOrganizationControllerBase
with ApiRepositoryControllerBase
with ApiUserControllerBase
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
with ProtectedBranchService