summaryrefslogtreecommitdiffstats
path: root/src/routes/model.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/model.rs')
-rw-r--r--src/routes/model.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/model.rs b/src/routes/model.rs
index ea6f314..58ec732 100644
--- a/src/routes/model.rs
+++ b/src/routes/model.rs
@@ -132,7 +132,7 @@ async fn edit_model(
async fn upload_model_file(
claims: Claims,
Path(model_id): Path<i32>,
- ContentLengthLimit(multipart): ContentLengthLimit<Multipart, { 1024 * 1024 }>,
+ ContentLengthLimit(multipart): ContentLengthLimit<Multipart, { 1024 * 1024 * 40 }>,
) -> Result<Json<ModelUpload>, AppError> {
let model = match Model::find_by_id(model_id).await {
Ok(model) => model,