Rename ProjectService to RepositoryService.

This commit is contained in:
takezoe
2013-06-04 01:14:27 +09:00
parent f9c085ced6
commit 78ad794613
7 changed files with 21 additions and 18 deletions

View File

@@ -5,9 +5,10 @@ import util.JGitUtil
import util.Directory._
import jp.sf.amateras.scalatra.forms._
class WikiController extends WikiControllerBase with WikiService with ProjectService with AccountService
class WikiController extends WikiControllerBase
with WikiService with RepositoryService with AccountService
trait WikiControllerBase extends ControllerBase { self: WikiService with ProjectService =>
trait WikiControllerBase extends ControllerBase { self: WikiService with RepositoryService =>
case class WikiPageEditForm(pageName: String, content: String, message: Option[String], currentPageName: String)