Add AccountService and ProjectService.

This commit is contained in:
takezoe
2013-06-02 14:29:52 +09:00
parent f83d9a63b9
commit 6512b673f6
5 changed files with 63 additions and 9 deletions

View File

@@ -16,7 +16,7 @@ abstract class ControllerBase extends ScalatraFilter with ClientSideValidationFo
implicit def context: Context = Context(servletContext.getContextPath, LoginUser)
// TODO get from session
private val LoginUser = System.getProperty("user.name")
private val LoginUser = "admin" //System.getProperty("user.name")
}