Fix validators (#237)

* Fix file extension checks not working

* Fix validators not validating files of a non-matching extension
This commit is contained in:
Geometrically
2021-08-22 09:11:38 -07:00
committed by GitHub
parent 4073a7abc3
commit fdf8845a2f
2 changed files with 14 additions and 5 deletions

View File

@@ -535,7 +535,7 @@ pub async fn project_create_inner(
let mut categories = Vec::with_capacity(project_create_data.categories.len());
for category in &project_create_data.categories {
let id = models::categories::Category::get_id_project(
&category,
category,
project_type_id,
&mut *transaction,
)