Ignore input type file

This commit is contained in:
Crow Crowcrow 2017-09-16 21:40:32 +02:00
parent e0d86209ff
commit c85b683146

View File

@ -92,6 +92,11 @@ class Serializer {
} else { } else {
field = new SerializerField(f); field = new SerializerField(f);
} }
if(field.type == "file"){
return;
}
field.name = fieldName; field.name = fieldName;
field.parent = this; field.parent = this;