diff options
author | 2017-12-18 20:52:46 -0800 | |
---|---|---|
committer | 2017-12-18 20:52:46 -0800 | |
commit | b153fa8b3cd2e48bbe13326695f11d2013427ebc (patch) | |
tree | f1329af7075a8b618a58cc86434a55ffcf7ddc12 /server/ui/controller | |
parent | ce75748cf25d05f795b0ec8c659824345c7f3868 (diff) | |
download | v2-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.go | 6 |
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, }, })) } |