Uses the system user name as LoginUser. Actually, we'll have to get it from session.

This commit is contained in:
takezoe
2013-04-13 01:55:30 +09:00
parent c2d330977a
commit 80c9d3e9f6

View File

@@ -5,6 +5,7 @@ package app
*/
trait ServletBase {
val LoginUser = "takezoe"
// TODO get from session
val LoginUser = System.getProperty("user.name")
}