aboutsummaryrefslogtreecommitdiff
path: root/internal/ui/api_key_create.go
diff options
context:
space:
mode:
authorGravatar jvoisin <julien.voisin@dustri.org> 2024-03-04 00:32:16 +0100
committerGravatar Frédéric Guillot <f@miniflux.net> 2024-03-03 20:32:15 -0800
commit8d80e9103f836284b73bc8d176c5ca63c31b0dfc (patch)
treebe76d5d8f02499dfda0831616cfbc69ee8c336c1 /internal/ui/api_key_create.go
parentd55b41080062915e728b6afb75f5623927f100f7 (diff)
downloadv2-8d80e9103f836284b73bc8d176c5ca63c31b0dfc.tar.gz
v2-8d80e9103f836284b73bc8d176c5ca63c31b0dfc.tar.zst
v2-8d80e9103f836284b73bc8d176c5ca63c31b0dfc.zip
Delay call of `view.New` after logging the user in
There is no need to do extra work like creating a session and its associated view until the user has been properly identified and as many possibly-failing sql request have been successfully run.
Diffstat (limited to 'internal/ui/api_key_create.go')
-rw-r--r--internal/ui/api_key_create.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/internal/ui/api_key_create.go b/internal/ui/api_key_create.go
index 05665037..9b1376ac 100644
--- a/internal/ui/api_key_create.go
+++ b/internal/ui/api_key_create.go
@@ -14,15 +14,14 @@ import (
)
func (h *handler) showCreateAPIKeyPage(w http.ResponseWriter, r *http.Request) {
- sess := session.New(h.store, request.SessionID(r))
- view := view.New(h.tpl, r, sess)
-
user, err := h.store.UserByID(request.UserID(r))
if err != nil {
html.ServerError(w, r, err)
return
}
+ sess := session.New(h.store, request.SessionID(r))
+ view := view.New(h.tpl, r, sess)
view.Set("form", &form.APIKeyForm{})
view.Set("menu", "settings")
view.Set("user", user)