From 5fe9520a9f7ed81cf24f25273b913656d0609d74 Mon Sep 17 00:00:00 2001 From: lennyaiko Date: Thu, 11 Apr 2024 20:25:05 +0100 Subject: [PATCH] chore: turn off blueprints on all templates --- templates/mellow-react/config/blueprints.js | 6 +++--- templates/mellow-svelte/config/blueprints.js | 6 +++--- templates/mellow-vue/config/blueprints.js | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/templates/mellow-react/config/blueprints.js b/templates/mellow-react/config/blueprints.js index c4b692e5..c9c82b58 100644 --- a/templates/mellow-react/config/blueprints.js +++ b/templates/mellow-react/config/blueprints.js @@ -15,18 +15,18 @@ module.exports.blueprints = { * Automatically expose implicit routes for every action in your app? * * * ***************************************************************************/ - // actions: false, + actions: false, /*************************************************************************** * * * Automatically expose RESTful routes for your models? * * * ***************************************************************************/ - // rest: true, + rest: false, /*************************************************************************** * * * Automatically expose CRUD "shortcut" routes to GET requests? * * (These are enabled by default in development only.) * * * ***************************************************************************/ - // shortcuts: true, + shortcuts: false, } diff --git a/templates/mellow-svelte/config/blueprints.js b/templates/mellow-svelte/config/blueprints.js index c4b692e5..c9c82b58 100644 --- a/templates/mellow-svelte/config/blueprints.js +++ b/templates/mellow-svelte/config/blueprints.js @@ -15,18 +15,18 @@ module.exports.blueprints = { * Automatically expose implicit routes for every action in your app? * * * ***************************************************************************/ - // actions: false, + actions: false, /*************************************************************************** * * * Automatically expose RESTful routes for your models? * * * ***************************************************************************/ - // rest: true, + rest: false, /*************************************************************************** * * * Automatically expose CRUD "shortcut" routes to GET requests? * * (These are enabled by default in development only.) * * * ***************************************************************************/ - // shortcuts: true, + shortcuts: false, } diff --git a/templates/mellow-vue/config/blueprints.js b/templates/mellow-vue/config/blueprints.js index c4b692e5..c9c82b58 100644 --- a/templates/mellow-vue/config/blueprints.js +++ b/templates/mellow-vue/config/blueprints.js @@ -15,18 +15,18 @@ module.exports.blueprints = { * Automatically expose implicit routes for every action in your app? * * * ***************************************************************************/ - // actions: false, + actions: false, /*************************************************************************** * * * Automatically expose RESTful routes for your models? * * * ***************************************************************************/ - // rest: true, + rest: false, /*************************************************************************** * * * Automatically expose CRUD "shortcut" routes to GET requests? * * (These are enabled by default in development only.) * * * ***************************************************************************/ - // shortcuts: true, + shortcuts: false, }