Petri
Petri
Oh wow, I'm so sorry to hear. Please keep us updated on his condition if possible. I don't think I'm entirely up to scratch to be the sole maintainer of...
@romanbican Well, I for one would be keen to help out wherever I can. Please message me whenever you can. Good to hear you're ok!
@kirgy Unfortunately I haven't heard anything back from @romanbican . Not sure if @sandervankasteel perhaps has? Anyway, I'm still keen to help out wherever possible.
@kirgy That's a shame indeed. I haven't had any problems with it so far myself, but might need to do the same at some point if the need arises. What...
I haven't tried this myself, but if you have Roles set up correctly, I imagine instantiating a new instance of the user you want should work: `$newUser = User::find($id);` This...
Sure Method on server: ``` javascript Meteor.methods({ save_url:function(response){ //console.log(response); console.log('Add '+response.upload_data+' to the id of '+response.context); } }); ``` In the view: ``` {{#c_upload_stream callback="save_url"}} {{/c_upload_stream}} {{#each c.uploading_images}} {{percent_uploaded}} {{/each}}...
Thanks, really appreciate it! One thing, when I query the local collection record, the uploading attribute is still set to true. Not sure if that helps in anyway.
That makes sense, I'm also using the boilerplate with easy-security module
Thanks @oragame , I had exactly the same problem on this step. Your solution worked perfectly.