Skip to content

Commit

Permalink
fix(config): allow nulls for database user/pass
Browse files Browse the repository at this point in the history
  • Loading branch information
anna328p committed Dec 26, 2023
1 parent 393298c commit e73b7de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions share/global_config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@

"user": {
"description": "Database username",
"type": "string"
"type": [ "string", "null" ]
},

"pass": {
"description": "Database password",
"type": "string"
"type": [ "string", "null" ]
}
}
},
Expand Down

0 comments on commit e73b7de

Please sign in to comment.