(refs #28)Implementing avatar image uploading.

This commit is contained in:
takezoe
2013-07-10 03:01:46 +09:00
parent 09ef1e0319
commit 2c33abe5d1
3 changed files with 79 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import javax.servlet._
class ScalatraBootstrap extends LifeCycle {
override def init(context: ServletContext) {
context.mount(new IndexController, "/")
context.mount(new FileUploadController, "/upload")
context.mount(new SignInController, "/*")
context.mount(new UserManagementController, "/*")
context.mount(new SystemSettingsController, "/*")