mirror of
https://github.com/miniflux/v2.git
synced 2025-08-11 17:51:01 +00:00
Make entries sorting configurable
This commit is contained in:
parent
453ff64f29
commit
2f1367a8d4
28 changed files with 253 additions and 193 deletions
|
@ -4,8 +4,14 @@
|
|||
|
||||
package model
|
||||
|
||||
import "fmt"
|
||||
|
||||
// Token represents a CSRF token in the system.
|
||||
type Token struct {
|
||||
ID string
|
||||
Value string
|
||||
}
|
||||
|
||||
func (t Token) String() string {
|
||||
return fmt.Sprintf(`ID="%s"`, t.ID)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue