Increased the maximum filename limit to 255. No consistent with the DB and standards.
This commit is contained in:
@@ -28,7 +28,7 @@ async def get_qr(
|
||||
account_id: str = Path(min_length=11, max_length=22),
|
||||
regen: bool = False,
|
||||
qr_type: str = Query(None, min_length=1, max_length=10),
|
||||
filename: str = Query(None, min_length=4, max_length=100),
|
||||
filename: str = Query(None, min_length=4, max_length=255),
|
||||
|
||||
n: str = Query('', max_length=100),
|
||||
fn: str = Query('', max_length=100),
|
||||
|
||||
Reference in New Issue
Block a user