dr.dimitru
dr.dimitru
@dekyfin thank you for your feedback and suggestion. We will consider it for the next releases. Suggestions are always welcome.
@mjurincic suggestions on unified API/solution to work with most of widely used DBs are always welcome here
@edgedemon looks great! Want to discuss implementation steps?
> taking another look it wont work as i wished since you are using josk for the queue system, i would need to replace it or modify it in a...
Hello @trusktr , You have defined `onBeforeUpload` in [`.insert()`](https://github.com/veliovgroup/Meteor-Files/blob/master/docs/insert.md) method. Thought it's empty its return will be treated as `undefined !== true`; __Solution:__ remove `onBeforeUpload` hook or return `true` in...
> Does this example does it wrong? > > https://github.com/Neobii/files-gridfs-autoform-example/blob/master/lib/images.js No, I don't see `onBeforeUpload` defined in object passed into `.insert()` method
> Oh, `onBeforeUpload` works in both places? @trusktr correct, check on client and server with option skip Client Feel free to close it in case if the issue is solved...
Hello @trusktr, was this one solved on your end? Feel free to close it in case if the issue is solved on your end.
@ajaypillay It's totally fine to get canvas as base64. Just upload it via `.insert` [as base64 string](https://github.com/veliovgroup/Meteor-Files/blob/7f67a0885e120ad77085b191e3399add575a2d89/docs/insert.md#upload-base64-string) > As a separate question, is it possible to make this call synchronous?...
@Prinzhorn > I've just started using Meteor and I kind of had the same questions. In core Meteor you should never use insert but use methods. That's why I was...