Manuel Córdoba
Manuel Córdoba
Hi, In kue, you can do: ```javascript kue.Job.get(11, function(err, job){ console.log(job.type) }) ``` But when you are using adonis-kue provider the Job object is not exported so you have to...
Hi, Is it possible to create different queues? I want to have several workers processing different queues with different kind of jobs. I think in kue it is possible passing...
Hi, I have two related entities, ShipmentItem and Shipment. Shipment hasMany ShipmentItem and ShipmentItem belongsTo Shipment. If I do: ```javascript const shipmentItem = await ShipmentItem.where({printItem_id: printItem._id}).with('shipment').first() ``` Then I expect...
## 🚀 Feature Proposal It would be useful the possibility to protect the file with a password as you can do already on excel files. ## Motivation It is useful...