BUG: acces to app struct ifrom the controllers is missing

This commit is contained in:
Simon Martens
2026-01-14 13:59:38 +01:00
parent 163aeac820
commit d4881a589a
3 changed files with 69 additions and 9 deletions

View File

@@ -14,8 +14,8 @@ func (h *HTML) SetKey(key string) {
h.Set(KEY_FIELD, key)
}
func (h *HTML) HTML() string {
return h.GetString(HTML_FIELD)
func (h *HTML) HTML() any {
return h.GetRaw(HTML_FIELD)
}
func (h *HTML) SetHTML(html string) {

View File

@@ -149,6 +149,18 @@ func Data_Key(app core.App, key string) (*Data, error) {
return &ret, err
}
func Data_All(app core.App) ([]*Data, error) {
data := make([]*Data, 0)
err := app.RecordQuery(DATA_TABLE).All(&data)
return data, err
}
func Html_All(app core.App) ([]*HTML, error) {
html := make([]*HTML, 0)
err := app.RecordQuery(HTML_TABLE).All(&html)
return html, err
}
func AccessTokens_Token(app core.App, token string) (*AccessToken, error) {
t := HashStringSHA256(token)
return TableByField[*AccessToken](