We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 591c6c0 commit 6f39365Copy full SHA for 6f39365
src/backend/src/modules/internet/WispRelayService.js
@@ -5,11 +5,13 @@ class WispRelayService extends BaseService {
5
const path_ = require('path');
6
const svc_process = this.services.get('process');
7
svc_process.start({
8
+ name: 'internet.js',
9
command: this.config.node_path,
10
fullpath: this.config.wisp_relay_path,
11
args: ['index.js'],
12
env: {
13
PORT: this.config.wisp_relay_port,
14
+ WISP_AUTH_SERVER: this.config.origin,
15
},
16
});
17
}
src/backend/src/services/WispService.js
@@ -76,7 +76,7 @@ class WispService extends BaseService {
76
77
const event = {
78
allow: true,
79
- policy: {},
+ policy: { allow: true },
80
user: await svc_getUser.get_user({
81
uuid: decoded.user_uid,
82
}),
0 commit comments