@BlueXik I use 'stored' event (works at server side only):
Images.on('stored', function (file, storeName) {
Fiber(function () {
let url = file.url({store: storeName})
and file should be reactively update its urls after insert at client side:
Images.insert(newFile, (error, file) => {
// file.url({store: 'youStoreName'})
hey guys, is there a way of listing all the contents of a database of my app?
I have been building an app, all static. Haven’t created a single collection,
but I’m using some packages that I’m pretty sure are creating collections.
When I remove autopublish and deploy, the app crashes.
Do I need to set up subscriptions and publications manually for packages that use collections?
Hi guys!
Can someone help with custom filters of reactive-table
package.
I want to filter according to date
My date get's stored in db in format as "2016-02-18T00:00:00.000Z"
but when I query my collection, I receive the result in following format Thu Feb 18 2016 05:30:00 GMT+0530 (IST)
I want to create a custom filter and use $lte
and $gte
to get my desired docs in the table. But whenever I pass in any of above format, table renders nothing!!
How to solve this issue?
//my router.js first lines
Router.configure({
// the default layout
layoutTemplate: 'Home',
notFoundTemplate: 'notfound',
loadingTemplate: 'loading'
});
Router.onBeforeAction("loading”);
writeTransform
s to JPEG using graphicsmagick
. How can I keep liked the original image with the one that is created by the transform? Currently they are there but unrelated. The transformed one is created after the original. Is there a way to make the transformed one have stored the id of the original somewhere? How would you do that?
.save
being implemented? package?