2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-12-03 04:32:14 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package model // import "miniflux.app/v2/internal/model"
|
2017-12-03 04:32:14 +01:00
|
|
|
|
|
|
|
// Integration represents user integration settings.
|
|
|
|
type Integration struct {
|
2023-09-10 20:22:32 +02:00
|
|
|
UserID int64
|
|
|
|
PinboardEnabled bool
|
|
|
|
PinboardToken string
|
|
|
|
PinboardTags string
|
|
|
|
PinboardMarkAsUnread bool
|
|
|
|
InstapaperEnabled bool
|
|
|
|
InstapaperUsername string
|
|
|
|
InstapaperPassword string
|
|
|
|
FeverEnabled bool
|
|
|
|
FeverUsername string
|
|
|
|
FeverToken string
|
|
|
|
GoogleReaderEnabled bool
|
|
|
|
GoogleReaderUsername string
|
|
|
|
GoogleReaderPassword string
|
|
|
|
WallabagEnabled bool
|
|
|
|
WallabagOnlyURL bool
|
|
|
|
WallabagURL string
|
|
|
|
WallabagClientID string
|
|
|
|
WallabagClientSecret string
|
|
|
|
WallabagUsername string
|
|
|
|
WallabagPassword string
|
|
|
|
NunuxKeeperEnabled bool
|
|
|
|
NunuxKeeperURL string
|
|
|
|
NunuxKeeperAPIKey string
|
|
|
|
NotionEnabled bool
|
|
|
|
NotionToken string
|
|
|
|
NotionPageID string
|
|
|
|
EspialEnabled bool
|
|
|
|
EspialURL string
|
|
|
|
EspialAPIKey string
|
|
|
|
EspialTags string
|
|
|
|
ReadwiseEnabled bool
|
|
|
|
ReadwiseAPIKey string
|
|
|
|
PocketEnabled bool
|
|
|
|
PocketAccessToken string
|
|
|
|
PocketConsumerKey string
|
|
|
|
TelegramBotEnabled bool
|
|
|
|
TelegramBotToken string
|
|
|
|
TelegramBotChatID string
|
|
|
|
TelegramBotTopicID *int64
|
|
|
|
TelegramBotDisableWebPagePreview bool
|
|
|
|
TelegramBotDisableNotification bool
|
2023-09-28 05:02:22 +02:00
|
|
|
TelegramBotDisableButtons bool
|
2024-01-23 18:12:31 +01:00
|
|
|
LinkAceEnabled bool
|
|
|
|
LinkAceURL string
|
|
|
|
LinkAceAPIKey string
|
|
|
|
LinkAceTags string
|
|
|
|
LinkAcePrivate bool
|
|
|
|
LinkAceCheckDisabled bool
|
2023-09-10 20:22:32 +02:00
|
|
|
LinkdingEnabled bool
|
|
|
|
LinkdingURL string
|
|
|
|
LinkdingAPIKey string
|
|
|
|
LinkdingTags string
|
|
|
|
LinkdingMarkAsUnread bool
|
|
|
|
MatrixBotEnabled bool
|
|
|
|
MatrixBotUser string
|
|
|
|
MatrixBotPassword string
|
|
|
|
MatrixBotURL string
|
|
|
|
MatrixBotChatID string
|
|
|
|
AppriseEnabled bool
|
|
|
|
AppriseURL string
|
|
|
|
AppriseServicesURL string
|
|
|
|
ShioriEnabled bool
|
|
|
|
ShioriURL string
|
|
|
|
ShioriUsername string
|
|
|
|
ShioriPassword string
|
|
|
|
ShaarliEnabled bool
|
|
|
|
ShaarliURL string
|
|
|
|
ShaarliAPISecret string
|
|
|
|
WebhookEnabled bool
|
|
|
|
WebhookURL string
|
|
|
|
WebhookSecret string
|
2023-10-22 20:10:56 +02:00
|
|
|
RSSBridgeEnabled bool
|
|
|
|
RSSBridgeURL string
|
2023-12-05 05:05:04 +01:00
|
|
|
OmnivoreEnabled bool
|
|
|
|
OmnivoreAPIKey string
|
|
|
|
OmnivoreURL string
|
2017-12-03 04:32:14 +01:00
|
|
|
}
|