Add the manage collaborators page.

This commit is contained in:
takezoe
2013-06-02 00:38:05 +09:00
parent c811582c6e
commit 25f642a97b
4 changed files with 91 additions and 68 deletions

View File

@@ -16,5 +16,12 @@ class SettingsController extends ControllerBase {
settings.html.options(JGitUtil.getRepositoryInfo(owner, repository, servletContext))
}
get("/:owner/:repository/settings/collaborators") {
val owner = params("owner")
val repository = params("repository")
settings.html.collaborators(JGitUtil.getRepositoryInfo(owner, repository, servletContext))
}
}