mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
Improve timezone handling
This commit is contained in:
parent
519d4fcd73
commit
a63105e13b
14 changed files with 50 additions and 48 deletions
|
@ -16,9 +16,9 @@ import (
|
|||
"github.com/lib/pq"
|
||||
)
|
||||
|
||||
// GetEntryQueryBuilder returns a new EntryQueryBuilder
|
||||
func (s *Storage) GetEntryQueryBuilder(userID int64, timezone string) *EntryQueryBuilder {
|
||||
return NewEntryQueryBuilder(s, userID, timezone)
|
||||
// NewEntryQueryBuilder returns a new EntryQueryBuilder
|
||||
func (s *Storage) NewEntryQueryBuilder(userID int64) *EntryQueryBuilder {
|
||||
return NewEntryQueryBuilder(s, userID)
|
||||
}
|
||||
|
||||
// createEntry add a new entry.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue