Big refactoring #77

Merged
flecomte merged 166 commits from refactoring-component-and-immutable into master 2021-03-24 19:06:07 +01:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit b61fc3c7d1 - Show all commits

View File

@@ -14,7 +14,7 @@ import io.ktor.util.*
@KtorExperimentalLocationsAPI
@Location("/login")
private class LoginRequest
class LoginRequest
@KtorExperimentalLocationsAPI
@KtorExperimentalAPI

View File

@@ -20,7 +20,7 @@ import org.joda.time.DateTime
@KtorExperimentalLocationsAPI
@Location("/register")
private class RegisterRequest {
class RegisterRequest {
data class Input(
val name: Name,
val email: String,

View File

@@ -12,7 +12,7 @@ import io.ktor.util.*
@KtorExperimentalLocationsAPI
@Location("/sso")
private class SsoRequest {
class SsoRequest {
data class Input(val email: String, val url: String)
}