Missing semi

This commit is contained in:
cyril lopez 2017-10-27 06:00:07 +02:00
parent 53ab41110b
commit 7ae11f90da

View File

@ -198,8 +198,8 @@ module.exports = {
if (connector === 'strapi-bookshelf') {
try {
const tableExists = await strapi.connections[connection].schema.hasTable(model)
const tableExists = await strapi.connections[connection].schema.hasTable(model);
return ctx.send({ tableExists });
} catch(error) {
return ctx.badRequest(null, [{ messages: [{ id: 'Not found' }] }]);