Add the account editing page.

This commit is contained in:
takezoe
2013-06-06 21:21:27 +09:00
parent ab4cde9301
commit a6b5098f33
5 changed files with 79 additions and 16 deletions

View File

@@ -7,10 +7,11 @@ class ScalatraBootstrap extends LifeCycle {
context.mount(new IndexController, "/")
context.mount(new SignInController, "/*")
context.mount(new UsersController, "/*")
context.mount(new CreateRepositoryController, "/*")
context.mount(new AccountController, "/*")
context.mount(new RepositoryViewerController, "/*")
context.mount(new WikiController, "/*")
context.mount(new IssuesController, "/*")
context.mount(new CreateRepositoryController, "/*")
context.mount(new RepositoryViewerController, "/*")
context.mount(new SettingsController, "/*")
context.addListener(new ServletContextListener(){