Cas du Plessis
Cas du Plessis
Could you perhaps add an option to the option to exclude certain routes? I'm using the hapi-swagger plugin, and now blipp shows the /docs and /documentation routes in the route...
If I have two entity models as follows: ``` javascript module.exports = { identity: 'assessment', attributes: { id: { columnName: 'assessmentId', type: 'integer', primaryKey: true, autoIncrement: true, unique: true },...
When setting `populate: true` to a `GET` route, the response payload includes the attributes of the associated entities. This does, however, does not work for `PUT` or `PATCH`. Is there...
Besides MongoDB, is it at all possible to use other DB engines (MySQL, PostgreSQL, Redis, etc) with SpikeNail?
I have the following associations defined: ``` javascript module.exports = ({ Assessment, Event, Organisation }) => { Event.hasMany(Assessment, {foreignKey:'eventId'}); Event.belongsTo(Organisation, {foreignKey:'organisationId'}); } ``` Calling `http://localhost:3030/api/seq/events?include=Assessment` or `http://localhost:3030/api/seq/events?include=Organisation` produces the response,...
When using the app_scaffold, how would one use handlebars conditionals in `default.js`?
Would be great if guru shipped with a built-in auth module. Features: - Authentication Model: Username/password, JWT, passport, etc - Authorization: Access Control Lists (ACL), RBAC, etc