Remove attachment validation

Turns out `fileName` is optional and maybe even `contentType`. We should revisit
this at a later point in time.
This commit is contained in:
Daniel Gasienica 2018-03-21 18:24:38 -04:00
parent 0b7ce39ff7
commit 8e762797c0

View file

@ -29,8 +29,9 @@ const { migrateDataToFileSystem } = require('./attachment/migrate_data_to_file_s
// schemaVersion: integer
// }
// Returns true if `rawAttachment` is a valid attachment based on our (limited)
// criteria. Over time, we can expand this definition to become more narrow:
// Returns true if `rawAttachment` is a valid attachment based on our current schema.
// Over time, we can expand this definition to become more narrow, e.g. require certain
// fields, etc.
exports.isValid = (rawAttachment) => {
// NOTE: We cannot use `_.isPlainObject` because `rawAttachment` is
// deserialized by protobuf:
@ -38,10 +39,7 @@ exports.isValid = (rawAttachment) => {
return false;
}
const hasValidContentType = isString(rawAttachment.contentType);
const hasValidFileName =
isString(rawAttachment.fileName) || rawAttachment.fileName === null;
return hasValidContentType && hasValidFileName;
return true;
};
// Upgrade steps