1
0
Fork 0
miniflux/model/integration.go

34 lines
944 B
Go
Raw Normal View History

2017-12-02 22:32:14 -05: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.
package model
// Integration represents user integration settings.
type Integration struct {
UserID int64
PinboardEnabled bool
PinboardToken string
PinboardTags string
PinboardMarkAsUnread bool
2017-12-03 00:12:03 -05:00
InstapaperEnabled bool
InstapaperUsername string
InstapaperPassword string
2017-12-03 20:44:27 -05:00
FeverEnabled bool
FeverUsername string
FeverPassword string
FeverToken string
2017-12-18 23:52:46 -05:00
WallabagEnabled bool
WallabagURL string
WallabagClientID string
WallabagClientSecret string
WallabagUsername string
WallabagPassword string
2018-02-25 14:49:08 -05:00
NunuxKeeperEnabled bool
NunuxKeeperURL string
NunuxKeeperAPIKey string
2018-05-20 16:31:56 -04:00
PocketEnabled bool
PocketAccessToken string
PocketConsumerKey string
2017-12-02 22:32:14 -05:00
}