mirror of
https://github.com/documize/community.git
synced 2025-07-19 21:29:42 +02:00
Implemented per database provider DATE INTERVAL queries
This commit is contained in:
parent
97d36fa2c8
commit
075060d11c
4 changed files with 22 additions and 0 deletions
|
@ -52,6 +52,8 @@ func BuildExport(ctx domain.RequestContext, s store.Store, spec exportSpec) (htm
|
|||
if e == nil {
|
||||
content.WriteString(c)
|
||||
toc = append(toc, t...)
|
||||
} else {
|
||||
fmt.Println("export.space", err)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -60,6 +62,8 @@ func BuildExport(ctx domain.RequestContext, s store.Store, spec exportSpec) (htm
|
|||
if e == nil {
|
||||
content.WriteString(c)
|
||||
toc = append(toc, t...)
|
||||
} else {
|
||||
fmt.Println("export.category", err)
|
||||
}
|
||||
|
||||
case "document":
|
||||
|
@ -67,6 +71,8 @@ func BuildExport(ctx domain.RequestContext, s store.Store, spec exportSpec) (htm
|
|||
if e == nil {
|
||||
content.WriteString(c)
|
||||
toc = append(toc, t...)
|
||||
} else {
|
||||
fmt.Println("export.document", err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue