Skip to content

Commit

Permalink
feat: diable identity auto creation
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbi08 committed Oct 17, 2024
1 parent 5d6e4a3 commit c272a26
Show file tree
Hide file tree
Showing 6 changed files with 112 additions and 2,171 deletions.
7 changes: 4 additions & 3 deletions README_dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,11 @@ npm run test:local -- testSuiteName
"platformClientId": "...",
"platformClientSecret": "..."
},
"database": { "driver": "lokijs", "folder": "./" },
"database": { "driver": "lokijs", "folder": "./", "dbName": "local", "dbNamePrefix": "l" },
"logging": { "categories": { "default": { "appenders": ["console"] } } },
"infrastructure": { "httpServer": { "apiKey": "xxx", port: 8080 } },
"modules": { "coreHttpApi": { "docs": { "enabled": true } } }
"infrastructure": { "httpServer": { "apiKey": "xxx", "port": 8080 } },
"modules": { "coreHttpApi": { "docs": { "enabled": true } } },
"transportLibrary": { "allowIdentityCreation": true }
}
```
6. replace ... in the config with real values
Expand Down
4 changes: 3 additions & 1 deletion config/default.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"debug": false,
"transportLibrary": {},
"transportLibrary": {
"allowIdentityCreation": false
},
"database": {
"driver": "mongodb",
"dbName": "default",
Expand Down
3 changes: 2 additions & 1 deletion config/test.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"debug": true,
"transportLibrary": {
"debug": true
"debug": true,
"allowIdentityCreation": true
},
"logging": {
"appenders": {
Expand Down
Loading

0 comments on commit c272a26

Please sign in to comment.