@node-red/editor-api 2.1.0 → 2.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/auth/index.js CHANGED
@@ -141,7 +141,7 @@ function completeVerify(profile,done) {
141
141
  Users.authenticate(profile).then(function(user) {
142
142
  if (user) {
143
143
  Tokens.create(user.username,"node-red-editor",user.permissions).then(function(tokens) {
144
- log.audit({event: "auth.login",username:user.username,scope:user.permissions});
144
+ log.audit({event: "auth.login",user,username:user.username,scope:user.permissions});
145
145
  user.tokens = tokens;
146
146
  done(null,user);
147
147
  });
@@ -93,7 +93,7 @@ var passwordTokenExchange = function(client, username, password, scope, done) {
93
93
  return logEntry.user !== username;
94
94
  });
95
95
  Tokens.create(username,client.id,scope).then(function(tokens) {
96
- log.audit({event: "auth.login",username:username,client:client.id,scope:scope});
96
+ log.audit({event: "auth.login",user,username:username,client:client.id,scope:scope});
97
97
  done(null,tokens.accessToken,null,{expires_in:tokens.expires_in});
98
98
  });
99
99
  } else {
@@ -48,9 +48,10 @@ module.exports = {
48
48
  var prevLang = i18n.i.language;
49
49
  // Trigger a load from disk of the language if it is not the default
50
50
  i18n.i.changeLanguage(lang, function(){
51
- var catalog = loadResource(lang, namespace);
52
- res.json(catalog||{});
51
+ i18n.i.changeLanguage(prevLang, function() {
52
+ var catalog = loadResource(lang, namespace);
53
+ res.json(catalog||{});
54
+ });
53
55
  });
54
- i18n.i.changeLanguage(prevLang);
55
56
  }
56
57
  }
@@ -27,7 +27,8 @@ var defaultContext = {
27
27
  tabicon: {
28
28
  icon: "red/images/node-red-icon-black.svg",
29
29
  colour: "#8f0000"
30
- }
30
+ },
31
+ version: require(path.join(__dirname,"../../package.json")).version
31
32
  },
32
33
  header: {
33
34
  title: "Node-RED",
@@ -227,6 +228,11 @@ module.exports = {
227
228
  if (theme.theme) {
228
229
  themeSettings.theme = theme.theme;
229
230
  }
231
+
232
+ if (theme.hasOwnProperty("tours")) {
233
+ themeSettings.tours = theme.tours;
234
+ }
235
+
230
236
  return themeApp;
231
237
  },
232
238
  context: async function() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-red/editor-api",
3
- "version": "2.1.0",
3
+ "version": "2.1.4",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./lib/index.js",
6
6
  "repository": {
@@ -16,8 +16,8 @@
16
16
  }
17
17
  ],
18
18
  "dependencies": {
19
- "@node-red/util": "2.1.0",
20
- "@node-red/editor-client": "2.1.0",
19
+ "@node-red/util": "2.1.4",
20
+ "@node-red/editor-client": "2.1.4",
21
21
  "bcryptjs": "2.4.3",
22
22
  "body-parser": "1.19.0",
23
23
  "clone": "2.1.2",
@@ -28,7 +28,7 @@
28
28
  "mime": "2.5.2",
29
29
  "multer": "1.4.3",
30
30
  "mustache": "4.2.0",
31
- "oauth2orize": "1.11.0",
31
+ "oauth2orize": "1.11.1",
32
32
  "passport-http-bearer": "1.0.1",
33
33
  "passport-oauth2-client-password": "0.1.2",
34
34
  "passport": "0.5.0",