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

@@ -2,9 +2,9 @@ package app
import service._
class IndexController extends IndexControllerBase with ProjectService with AccountService
class IndexController extends IndexControllerBase with RepositoryService with AccountService
trait IndexControllerBase extends ControllerBase { self: ProjectService =>
trait IndexControllerBase extends ControllerBase { self: RepositoryService =>
get("/"){
html.index(getAccessibleRepositories(context.loginAccount, servletContext))