Package-level declarations

Types

Link copied to clipboard
class RegisterPage @Inject constructor(siteService: SiteService) : Page<RegisterPageRequest>
Link copied to clipboard
data class RegisterPageRequest(val session: CurrentSession?, val badCaptcha: Boolean?, val badEmail: Boolean?, val username: String?, val password: String?, val email: String?, val birthDay: String?, val birthMonth: String?, val birthYear: String?, val appearance: String?, val gender: String?) : PageRequest
Link copied to clipboard
class RegisterPageRouting @Inject constructor(service: RegisterPageService) : PageRouting
Link copied to clipboard
class RegisterPageService @Inject constructor(page: RegisterPage, playersService: PlayersService, argon2Service: Argon2Service) : PageService<RegisterPageRequest, Html, Redirect>