File: parameters.go

package info (click to toggle)
miniflux 2.2.16-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,188 kB
  • sloc: xml: 4,853; javascript: 1,158; sh: 257; makefile: 161
file content (39 lines) | stat: -rw-r--r-- 1,935 bytes parent folder | download
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
30
31
32
33
34
35
36
37
38
39
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

package googlereader // import "miniflux.app/v2/internal/googlereader"

const (
	// paramItemIDs - name of the parameter with the item ids
	paramItemIDs = "i"
	// paramStreamID - name of the parameter containing the stream to be included
	paramStreamID = "s"
	// paramStreamExcludes - name of the parameter containing streams to be excluded
	paramStreamExcludes = "xt"
	// paramStreamFilters - name of the parameter containing streams to be included
	paramStreamFilters = "it"
	// paramStreamMaxItems - name of the parameter containing number of items per page/max items returned
	paramStreamMaxItems = "n"
	// paramStreamOrder - name of the parameter containing the sort criteria
	paramStreamOrder = "r"
	// paramStreamStartTime - name of the parameter containing epoch timestamp, filtering items older than
	paramStreamStartTime = "ot"
	// paramStreamStopTime - name of the parameter containing epoch timestamp, filtering items newer than
	paramStreamStopTime = "nt"
	// paramTagsRemove - name of the parameter containing tags (streams) to be removed
	paramTagsRemove = "r"
	// paramTagsAdd - name of the parameter containing tags (streams) to be added
	paramTagsAdd = "a"
	// paramSubscribeAction - name of the parameter indicating the action to take for subscription/edit
	paramSubscribeAction = "ac"
	// paramTitle - name of the parameter for the title of the subscription
	paramTitle = "t"
	// paramQuickAdd - name of the parameter for a URL being quick subscribed to
	paramQuickAdd = "quickadd"
	// paramDestination - name of the parameter for the new name of a tag
	paramDestination = "dest"
	// paramContinuation -  name of the parameter for callers to pass to receive the next page of results
	paramContinuation = "c"
	// paramTimestamp - name of the parameter for unix timestamp
	paramTimestamp = "ts"
)