aboutsummaryrefslogtreecommitdiff
path: root/garage.go
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-04-19 12:17:27 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-04-19 12:17:27 +0200
commitddb1ca205abb6349b59bc5ea7764a68484e72338 (patch)
tree84db9ac2260ad87b04bca10ba6a90ecb1b4b83b3 /garage.go
parentbdb9af5a26f49799cb1feec866d289513eb09e7b (diff)
downloadguichet-ddb1ca205abb6349b59bc5ea7764a68484e72338.tar.gz
guichet-ddb1ca205abb6349b59bc5ea7764a68484e72338.zip
bind website page
Diffstat (limited to 'garage.go')
-rw-r--r--garage.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/garage.go b/garage.go
index e8962ae..d399ff7 100644
--- a/garage.go
+++ b/garage.go
@@ -92,16 +92,20 @@ func handleGarageKey(w http.ResponseWriter, r *http.Request) {
tKey.Execute(w, &view)
}
+type webListView struct {
+ Status *LoginStatus
+ Key *garage.KeyInfo
+}
func handleGarageWebsiteList(w http.ResponseWriter, r *http.Request) {
login, s3key, err := checkLoginAndS3(w, r)
if err != nil {
log.Println(err)
return
}
- log.Println(login, s3key)
+ view := webListView{Status: login, Key: s3key}
tWebsiteList := getTemplate("garage_website_list.html")
- tWebsiteList.Execute(w, nil)
+ tWebsiteList.Execute(w, &view)
}
func handleGarageWebsiteNew(w http.ResponseWriter, r *http.Request) {