Josh Rickert
Josh Rickert
@jonjamcam Yes, the diagram helps. It would help to make that more accessible for sure, because from the [plugin homepage](https://jamtaba-music-web-site.appspot.com/), the manual is pretty tough to find (4 clicks deep...
I have had some success using a dedicated query builder like Knex.js or Squel.js with `sequelize.query` or `sequelize.literal`: ``` const subQuery = knex .select() .column() .innerJoin() // etc.. .toString(); MyModel.findAll({...
I ran into this problem today as well. Is there a suggested workaround besides not using namespaces?
I ended up rolling my own auth middleware, wasn't too painful.