Enha: sqlx instead of pgx
This commit is contained in:
@ -43,6 +43,10 @@ func HandleCreateRoom(w http.ResponseWriter, r *http.Request) {
|
||||
fi.State.RoomID = room.ID
|
||||
fi.Room = room
|
||||
fi.Room.IsPublic = true // hardcode for local test; move to form
|
||||
if err := repo.CreateRoom(r.Context(), room); err != nil {
|
||||
abortWithError(w, err.Error())
|
||||
return
|
||||
}
|
||||
if err := saveFullInfo(fi); err != nil {
|
||||
msg := "failed to set current room to session"
|
||||
log.Error(msg, "error", err)
|
||||
|
Reference in New Issue
Block a user