From 32f896f19d31f92b5c2e540d0960d00fbf1bf9c3 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sat, 2 Feb 2019 20:52:09 +0200 Subject: - [Fix Sandstorm export board from web](https://github.com/wekan/wekan/issues/2157). - [Fix Error when logging in to Wekan REST API when using Sandstorm Wekan](https://github.com/wekan/wekan/issues/1279). Sandstorm API works this way: Make API key, and from that key copy API URL and API KEY to below. It saves Wekan board to file. `curl http://Bearer:APIKEY@api-12345.local.sandstorm.io:6080/api/boards/sandstorm/export?authToken=#APIKEY > wekanboard.json` If later API key does not work, you need to remove it and make a new one. Closes #2157, closes #1279 --- models/export.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'models') diff --git a/models/export.js b/models/export.js index 50971c88..76f2da06 100644 --- a/models/export.js +++ b/models/export.js @@ -31,7 +31,7 @@ if (Meteor.isServer) { user = Meteor.users.findOne({ 'services.resume.loginTokens.hashedToken': hashToken, }); - } else { + } else if (!Meteor.settings.public.sandstorm) { Authentication.checkUserId(req.userId); user = Users.findOne({ _id: req.userId, isAdmin: true }); } -- cgit v1.2.3-1-g7c22