This commit is contained in:
takezoe
2013-06-04 18:32:00 +09:00
parent 2b599a3052
commit b990257947
2 changed files with 2 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ class UsersController extends UsersControllerBase with AccountService
trait UsersControllerBase extends ControllerBase { self: AccountService =>
// TODO ユーザ名の先頭に_は使えないようにする利用可能文字チェック
case class UserForm(userName: String, password: String, mailAddress: String, userType: Int, url: Option[String])
val newForm = mapping(

View File

@@ -10,6 +10,7 @@ class WikiController extends WikiControllerBase
trait WikiControllerBase extends ControllerBase { self: WikiService with RepositoryService =>
// TODO ユーザ名の先頭に_は使えないようにする
case class WikiPageEditForm(pageName: String, content: String, message: Option[String], currentPageName: String)
val newForm = mapping(