This commit is contained in:
syuilo 2018-09-16 23:15:15 +09:00
parent afeb8058b1
commit dc2055f5bc
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -26,6 +26,21 @@ Note.createIndex({
});
export default Note;
// 後方互換性のため
Note.findOne({
fileIds: { $exists: true }
}).then(n => {
if (n == null) {
Note.update({}, {
$rename: {
mediaIds: 'fileIds'
}
}, {
multi: true
});
}
});
export function isValidText(text: string): boolean {
return length(text.trim()) <= 1000 && text.trim() != '';
}