aboutsummaryrefslogtreecommitdiff
path: root/server/ui/controller
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net> 2017-12-18 20:52:46 -0800
committerGravatar Frédéric Guillot <fred@miniflux.net> 2017-12-18 20:52:46 -0800
commitb153fa8b3cd2e48bbe13326695f11d2013427ebc (patch)
treef1329af7075a8b618a58cc86434a55ffcf7ddc12 /server/ui/controller
parentce75748cf25d05f795b0ec8c659824345c7f3868 (diff)
downloadv2-b153fa8b3cd2e48bbe13326695f11d2013427ebc.tar.gz
v2-b153fa8b3cd2e48bbe13326695f11d2013427ebc.tar.zst
v2-b153fa8b3cd2e48bbe13326695f11d2013427ebc.zip
Add Wallabag integration
Diffstat (limited to 'server/ui/controller')
-rw-r--r--server/ui/controller/integrations.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/server/ui/controller/integrations.go b/server/ui/controller/integrations.go
index babcfb74..99971b07 100644
--- a/server/ui/controller/integrations.go
+++ b/server/ui/controller/integrations.go
@@ -40,6 +40,12 @@ func (c *Controller) ShowIntegrations(ctx *core.Context, request *core.Request,
FeverEnabled: integration.FeverEnabled,
FeverUsername: integration.FeverUsername,
FeverPassword: integration.FeverPassword,
+ WallabagEnabled: integration.WallabagEnabled,
+ WallabagURL: integration.WallabagURL,
+ WallabagClientID: integration.WallabagClientID,
+ WallabagClientSecret: integration.WallabagClientSecret,
+ WallabagUsername: integration.WallabagUsername,
+ WallabagPassword: integration.WallabagPassword,
},
}))
}