fix User.kt(3x)

- fun enable fix
This commit is contained in:
dalbodeule 2024-08-08 20:33:27 +09:00
parent cbe1c64411
commit 81c62d6c55
No known key found for this signature in database
GPG Key ID: EFA860D069C9FA65

View File

@ -124,6 +124,7 @@ val server = embeddedServer(Netty, port = 8080, ) {
allowMethod(HttpMethod.Options)
allowMethod(HttpMethod.Put)
allowMethod(HttpMethod.Patch)
allowMethod(HttpMethod.Post)
allowMethod(HttpMethod.Delete)
allowMethod(HttpMethod.Get)
allowHost(dotenv["FRONTEND"] ?: "localhost:3000", schemes=listOf("https"))