diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-05 02:33:54 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-05 03:02:18 +0900 |
| commit | 968b835d0e6fe960c3d7ab915ef6d9cecec4ab7f (patch) | |
| tree | ee5c3cd7e3817866439f71eccb085e8394a0a1a5 /backend/admin/handlers.go | |
| parent | 5988360d8cf0fc0028c6db1c82afc1e313ba0513 (diff) | |
| download | phperkaigi-2025-albatross-968b835d0e6fe960c3d7ab915ef6d9cecec4ab7f.tar.gz phperkaigi-2025-albatross-968b835d0e6fe960c3d7ab915ef6d9cecec4ab7f.tar.zst phperkaigi-2025-albatross-968b835d0e6fe960c3d7ab915ef6d9cecec4ab7f.zip | |
feat(backend): allow to edit `game_type` in admin page
Diffstat (limited to 'backend/admin/handlers.go')
| -rw-r--r-- | backend/admin/handlers.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backend/admin/handlers.go b/backend/admin/handlers.go index 14523e6..d9a6977 100644 --- a/backend/admin/handlers.go +++ b/backend/admin/handlers.go @@ -130,6 +130,7 @@ func (h *AdminHandler) getGames(c echo.Context) error { } games[i] = echo.Map{ "GameID": g.GameID, + "GameType": g.GameType, "State": g.State, "DisplayName": g.DisplayName, "DurationSeconds": g.DurationSeconds, @@ -167,6 +168,7 @@ func (h *AdminHandler) getGameEdit(c echo.Context) error { "Title": "Game Edit", "Game": echo.Map{ "GameID": row.GameID, + "GameType": row.GameType, "State": row.State, "DisplayName": row.DisplayName, "DurationSeconds": row.DurationSeconds, @@ -190,6 +192,7 @@ func (h *AdminHandler) postGameEdit(c echo.Context) error { } } + gameType := c.FormValue("game_type") state := c.FormValue("state") displayName := c.FormValue("display_name") durationSeconds, err := strconv.Atoi(c.FormValue("duration_seconds")) @@ -247,6 +250,7 @@ func (h *AdminHandler) postGameEdit(c echo.Context) error { err = h.q.UpdateGame(c.Request().Context(), db.UpdateGameParams{ GameID: int32(gameID), + GameType: gameType, State: state, DisplayName: displayName, DurationSeconds: int32(durationSeconds), |
