Compare commits

..

No commits in common. "d3ae86b18d67848b9bc237e21ff5da7df6f2d695" and "170d22273fd2bd6c278aae1112bcc6c23ae97868" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -9,7 +9,7 @@ fun Application.configureHTTP() {
allowMethod(HttpMethod.Options)
allowMethod(HttpMethod.Get)
allowMethod(HttpMethod.Put)
allowMethod(HttpMethod.Delete)
//allowMethod(HttpMethod.Delete)
allowMethod(HttpMethod.Post)
allowHeader(HttpHeaders.AccessControlAllowOrigin)
allowHeader(HttpHeaders.Accept)

View File

@ -58,7 +58,6 @@ fun Application.configureMemberRouting() {
nickName = member.nickName
discordID = member.discordID
uid = member.uid
leave = member.leave
updatedAt = System.currentTimeMillis()
}
MemberService.updateById(id, oldData)