mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 13:37:20 +00:00
🐛(backend) fix TRASHBIN_CUTOFF_DAYS type error
Fixes `TRASHBIN_CUTOFF_DAYS` type as described in #1777. Signed-off-by: ChristopherSpelt <christopherspelt@icloud.com>
This commit is contained in:
parent
b56ebf19af
commit
39b9c8b5a9
2 changed files with 2 additions and 1 deletions
|
|
@ -16,6 +16,7 @@ and this project adheres to
|
|||
### Fixed
|
||||
|
||||
- ✅(backend) reduce flakiness on backend test #1769
|
||||
- 🐛(backend) fix TRASHBIN_CUTOFF_DAYS type error #1778
|
||||
|
||||
### Security
|
||||
|
||||
|
|
|
|||
|
|
@ -453,7 +453,7 @@ class Base(Configuration):
|
|||
"REDOC_DIST": "SIDECAR",
|
||||
}
|
||||
|
||||
TRASHBIN_CUTOFF_DAYS = values.Value(
|
||||
TRASHBIN_CUTOFF_DAYS = values.IntegerValue(
|
||||
30, environ_name="TRASHBIN_CUTOFF_DAYS", environ_prefix=None
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue