Skip to content

Commit a8b24ef

Browse files
committed
trustedOrigins is empty by default
1 parent 02f00bf commit a8b24ef

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

config/defaults.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = {
1212
'serverUri': 'https://localhost:8443',
1313
'webid': true,
1414
'strictOrigin': true,
15-
'trustedOrigins': ['https://apps.solid.invalid'],
15+
'trustedOrigins': [],
1616
'dataBrowserPath': 'default'
1717

1818
// For use in Enterprises to configure a HTTP proxy for all outbound HTTP requests from the SOLID server (we use

test/integration/authentication-oidc-test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ describe('Authentication API (OIDC)', () => {
4242
dataBrowser: false,
4343
webid: true,
4444
multiuser: false,
45-
configPath
45+
configPath,
46+
trustedOrigins: ['https://apps.solid.invalid']
4647
}
4748

4849
const aliceRootPath = path.join(__dirname, '../resources/accounts-scenario/alice')

0 commit comments

Comments
 (0)