2017-12-02 19:32:14 -08:00
|
|
|
// Copyright 2017 Frédéric Guillot. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Apache 2.0
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2018-08-24 21:51:50 -07:00
|
|
|
package model // import "miniflux.app/model"
|
2017-12-02 19:32:14 -08:00
|
|
|
|
|
|
|
// Integration represents user integration settings.
|
|
|
|
type Integration struct {
|
|
|
|
UserID int64
|
|
|
|
PinboardEnabled bool
|
|
|
|
PinboardToken string
|
|
|
|
PinboardTags string
|
|
|
|
PinboardMarkAsUnread bool
|
2017-12-02 21:12:03 -08:00
|
|
|
InstapaperEnabled bool
|
|
|
|
InstapaperUsername string
|
|
|
|
InstapaperPassword string
|
2017-12-03 17:44:27 -08:00
|
|
|
FeverEnabled bool
|
|
|
|
FeverUsername string
|
|
|
|
FeverPassword string
|
|
|
|
FeverToken string
|
2017-12-18 20:52:46 -08:00
|
|
|
WallabagEnabled bool
|
|
|
|
WallabagURL string
|
|
|
|
WallabagClientID string
|
|
|
|
WallabagClientSecret string
|
|
|
|
WallabagUsername string
|
|
|
|
WallabagPassword string
|
2018-02-25 19:49:08 +00:00
|
|
|
NunuxKeeperEnabled bool
|
|
|
|
NunuxKeeperURL string
|
|
|
|
NunuxKeeperAPIKey string
|
2018-05-20 13:31:56 -07:00
|
|
|
PocketEnabled bool
|
|
|
|
PocketAccessToken string
|
|
|
|
PocketConsumerKey string
|
2017-12-02 19:32:14 -08:00
|
|
|
}
|