DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: fff9260842462f4b7bbc4b889ae11eb141ae5143 tixe/handlers/settings.go -rw-r--r-- 724 bytes
fff92608Jonni Liljamo docs: remove old comment 1 year, 20 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package handlers

import (
	"net/http"
	"tixe/template"
	"tixe/types"

	"github.com/gin-contrib/sessions"
	"github.com/gin-gonic/gin"
)

type SettingsData struct {
}

func Settings(c *gin.Context) {
	session := sessions.Default(c)
	user := session.Get("user").(types.User)

	// This now comes from the session data, but kept as reference for other things
	//var displayName string
	//_ = db.PgPool.QueryRow(context.Background(),
	//	"SELECT display_name FROM users WHERE id = $1", user.Id).Scan(&displayName)

	settingsData := SettingsData {
	}

	html := template.TmplEngine.Render("settings.tmpl", map[string]interface{}{"title": "settings", "user": user, "data": settingsData})
	c.Data(http.StatusOK, "text/html", html)
}