mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
Create feed query builder
This commit is contained in:
parent
433de17562
commit
02a4c9db53
5 changed files with 343 additions and 306 deletions
|
@ -15,8 +15,11 @@ import (
|
|||
|
||||
// List of supported schedulers.
|
||||
const (
|
||||
SchedulerRoundRobin = "round_robin"
|
||||
SchedulerEntryFrequency = "entry_frequency"
|
||||
SchedulerRoundRobin = "round_robin"
|
||||
SchedulerEntryFrequency = "entry_frequency"
|
||||
// Default settings for the feed query builder
|
||||
DefaultFeedSorting = "parsing_error_count"
|
||||
DefaultFeedSortingDirection = "desc"
|
||||
)
|
||||
|
||||
// Feed represents a feed in the application.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue