implemented modifing of tasks of an event

This commit is contained in:
z1glr
2025-01-13 22:22:10 +00:00
parent 0685283007
commit a3c6fd685d
12 changed files with 468 additions and 288 deletions

View File

@@ -69,6 +69,7 @@ func init() {
"GET": app.Get,
"POST": app.Post,
"PATCH": app.Patch,
"PUT": app.Put,
"DELETE": app.Delete,
}
@@ -86,8 +87,11 @@ func init() {
"users": postUser,
},
"PATCH": {
"users/password": patchPassword,
"users": patchUser,
"users": patchUser,
"events": patchEvent,
},
"PUT": {
"users/password": putPassword,
},
"DELETE": {
"event": deleteEvent,