Log message #4204007

# At Username Text
# Sep 18th 2019, 21:37 daniel.upshaw Wellll, isn't it ideal to modularize the plugins?
# Sep 18th 2019, 21:36 dereuromark just make the plugin ignore its routes and set up plugin routes from your app, this way you can overwrite it.
# Sep 18th 2019, 21:32 daniel.upshaw Or otherwise I wonder if it's possible to check plugin routes before the main routes...
# Sep 18th 2019, 21:31 daniel.upshaw It seems that if the core app has `$routes->fallbacks(DashedRoute::class);`, then it doesn't pick up the `/:controller/:action` pattern from the root path
# Sep 18th 2019, 21:31 daniel.upshaw Any way to have a Plugin use `DashedRoutes` from the root path `/`, if the core app uses `$routes->fallbacks(DashedRoute::class);`?
# Sep 18th 2019, 20:32 ricksaccous I have no idea what you're currently using
# Sep 18th 2019, 20:31 noel So I'd have to create an action which listens for 'json-api' on the request and then manually construct json that shows the validation errors?
# Sep 18th 2019, 20:30 noel No, it's`422 Unprocessable Entity`
# Sep 18th 2019, 20:29 ricksaccous if not I think it's up to you to show the errors/etc
# Sep 18th 2019, 20:29 ricksaccous are you getting a 404?
# Sep 18th 2019, 20:28 noel ok cool. I'm trying to post to the json api and it's saying there are validation errors but not showing what they are?
# Sep 18th 2019, 20:25 ricksaccous then you can just get rid of the beforeFilter logic
# Sep 18th 2019, 20:24 ricksaccous https://book.cakephp.org/3.0/en/controllers/middleware.html#cross-site-request-forgery-csrf-middleware
# Sep 18th 2019, 20:24 ricksaccous yeah I'd say so
# Sep 18th 2019, 20:23 noel So I suppose I should register it only for non API prefixes?
# Sep 18th 2019, 20:22 noel Like this: ``` Router::scope('/', function (RouteBuilder $routes) { // Register scoped middleware for in scopes. $routes->registerMiddleware('csrf', new CsrfProtectionMiddleware([ 'httpOnly' => true, ])); ```
# Sep 18th 2019, 20:21 noel in the routes.php file
# Sep 18th 2019, 20:21 noel middleware
# Sep 18th 2019, 20:20 ricksaccous are you enabling it in the first place via routing or middleware?
# Sep 18th 2019, 20:20 noel Ok tx. Got that... now the CSRF error is back, even though it's disabled in the beforeFilter.
# Sep 18th 2019, 20:20 ricksaccous use Cake\Event\Event;
# Sep 18th 2019, 20:19 ricksaccous whatever it is
# Sep 18th 2019, 20:19 ricksaccous or use
# Sep 18th 2019, 20:19 ricksaccous you didn't import the class
# Sep 18th 2019, 20:19 noel Is that just scoping?
# Sep 18th 2019, 20:18 noel ok tx.. but then I get this error instead: `Declaration of App\Controller\AppController::beforeFilter(App\Controller\Event $event) should be compatible with Cake\Controller\Controller::beforeFilter(Cake\Event\Event $event) `
# Sep 18th 2019, 20:11 ricksaccous @noel disable CSRF for your Api
# Sep 18th 2019, 20:11 noel Hi all. I'm trying to use CrudJsonApi and I'm getting: `Error: CSRF token mismatch.` on a POST using Postman. Any idea how to fix that?
# Sep 18th 2019, 20:03 henri.mjr Ok, thanks
# Sep 18th 2019, 20:02 ricksaccous @henri.mjr not really no, you just have to specify a select form control
# Sep 18th 2019, 19:59 henri.mjr btw form->control show it as "input", its possible to cake understand it as select automatic?
# Sep 18th 2019, 19:59 henri.mjr `protected function _getTipo($tipo)` ` {` ` $opcoes = ['Branca','Morena','Negra'];` ` return $opcoes;` ` }`
# Sep 18th 2019, 19:58 henri.mjr Ok.. I got it on entity
# Sep 18th 2019, 19:31 henri.mjr I'm googling but no luck
# Sep 18th 2019, 19:31 henri.mjr Do you have an example for cakephp3?
# Sep 18th 2019, 19:26 ricksaccous up to you, meh
# Sep 18th 2019, 19:26 ricksaccous you could even make it a virtual property of your entity if you want
# Sep 18th 2019, 19:25 ricksaccous replacing X with a more descriptive word
# Sep 18th 2019, 19:25 ricksaccous $entity->getXOptions
# Sep 18th 2019, 19:25 ricksaccous i always find it kind of neat to do
# Sep 18th 2019, 19:25 ricksaccous or put it in your table class