move over to sqlite3 storage

This commit is contained in:
2023-07-28 20:02:34 -07:00
parent dc6e01db14
commit 12a2ccaed3
12 changed files with 60 additions and 209 deletions

View File

@@ -145,14 +145,18 @@
]
},
"client_id": {
"title": "",
"title": "OAuth2 client ID",
"description": "",
"type": "string"
},
"client_secret": {
"title": "",
"description": "",
"type": "string"
"allOf": [
{
"title": "OAuth2 client secret",
"description": ""
},
{ "$ref": "#/$defs/secret_value" }
]
}
}
},
@@ -212,6 +216,15 @@
"description": "Time-to-live for the session key cookie (in seconds)",
"type": "integer",
"default": 7200
},
"pepper": {
"allOf": [
{
"title": "Session key hashing pepper",
"description": "Cryptographic 'pepper' (or 'secret salt') value, appended to sessions keys before hashing"
},
{ "$ref": "#/$defs/secret_value" }
]
}
}
},
@@ -273,6 +286,29 @@
"required": [
"engine"
]
}
},
"secret_value": {
"oneOf": [
{ "$ref": "#/$defs/env_var" },
{
"title": "",
"description": "",
"type": "string"
}
]
},
"env_var": {
"type": "object",
"properties": {
"from_env": {
"title": "",
"description": "",
"type": "string"
}
},
"required": [
"from_env"
]
}
}
}