aboutsummaryrefslogtreecommitdiffhomepage
path: root/model/integration.go
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2017-12-02 19:32:14 -0800
committerGravatar Frédéric Guillot <fred@miniflux.net>2017-12-02 19:32:14 -0800
commit2356ddad28d50aacc8bbb3e020792d3b92f2fb4d (patch)
treea881d13d2fcc2e0d0fef2f7d26cfd2d6b044209f /model/integration.go
parent2f1367a8d4c33e7c6ba459cfc6756e079c7a1af4 (diff)
Add Pinboard integration
Diffstat (limited to 'model/integration.go')
-rw-r--r--model/integration.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/model/integration.go b/model/integration.go
new file mode 100644
index 0000000..91a4595
--- /dev/null
+++ b/model/integration.go
@@ -0,0 +1,14 @@
+// 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
+}