# |
Jul 9th 2018, 10:18 |
neon1024 |
So that I don’t need to configure the listener for every controller |
# |
Jul 9th 2018, 10:18 |
neon1024 |
Can I pass true to contain all associations? |
# |
Jul 9th 2018, 10:18 |
hmic |
then add the containedModels key with an array of models you want to contain in the action setup array, exactly the same like relatedModels works |
# |
Jul 9th 2018, 10:17 |
hmic |
you add App.ContainedModels to your listernes kez of the crud setup in the controller, where all the other listeners go too... |
# |
Jul 9th 2018, 10:17 |
neon1024 |
Thanks hmic! I will take a look at that shorlty |
# |
Jul 9th 2018, 10:16 |
neon1024 |
Especially as the Search.Prg should deal with that |
# |
Jul 9th 2018, 10:16 |
hmic |
https://gist.github.com/hmic/2fd01903d64c3c3d769aa85aa9ed0d08 |
# |
Jul 9th 2018, 10:14 |
neon1024 |
Yes, good point |
# |
Jul 9th 2018, 10:14 |
josbeir |
:P |
# |
Jul 9th 2018, 10:14 |
josbeir |
@neon1024 dont POST your search form ! |
# |
Jul 9th 2018, 10:09 |
hmic |
not sure why i didnt extend the existing listener, but there might have been a reason... |
# |
Jul 9th 2018, 10:08 |
hmic |
i'll get you the gist in a minute |
# |
Jul 9th 2018, 10:07 |
neon1024 |
https://book.cakephp.org/3.0/en/controllers/components/security.html#disabling-security-component-for-specific-actions |
# |
Jul 9th 2018, 10:07 |
neon1024 |
Unlocking the index action solves the issue |
# |
Jul 9th 2018, 10:07 |
neon1024 |
Turns out it’s because the SecurityComponent by default only allows POST on an Index action to a delete method |
# |
Jul 9th 2018, 10:07 |
hmic |
nested forms, because of using delete on the index page, maybe? |
# |
Jul 9th 2018, 10:06 |
hmic |
or your form is messed up |
# |
Jul 9th 2018, 10:06 |
hmic |
because you have the app open in multiple tabs or used the browser forward/back buttons |
# |
Jul 9th 2018, 09:53 |
neon1024 |
So I have no clue why the SecurityComponent is expecting delete |
# |
Jul 9th 2018, 09:53 |
neon1024 |
I’m just submitting my search form |
# |
Jul 9th 2018, 09:52 |
neon1024 |
`URL mismatch in POST data (expected '/admin/users/delete/1' but found '/admin/users')` |
# |
Jul 9th 2018, 09:52 |
neon1024 |
Does anyone know what this means? |
# |
Jul 9th 2018, 09:40 |
neon1024 |
RIMMER: Tomorrow. It’s on tomorrow’s daily goal list. Item 34, right after “Learn Portugese.” |
# |
Jul 9th 2018, 09:39 |
neon1024 |
Or write a new listener and suggest that the old one be deprecated |
# |
Jul 9th 2018, 09:39 |
neon1024 |
Perhaps I should contribute it myself |
# |
Jul 9th 2018, 09:39 |
neon1024 |
I added the related models on the index method |
# |
Jul 9th 2018, 09:39 |
neon1024 |
It would be nice if it was renamed to something more descriptive, or it’s functionality was extended some more |
# |
Jul 9th 2018, 09:35 |
neon1024 |
hmic, Sure if you don’t mind that’ll save me some typing. Could be worth contributing to the plugin. The relatedModels listener is a confusing beast at best |
# |
Jul 9th 2018, 09:29 |
hmic |
it's a blatant copy of the relatedModels listener though, AFAIK. has been some time, but using it regularly... ;-) |
# |
Jul 9th 2018, 09:28 |
hmic |
if you want mz implementation, i can put it into a gist |
# |
Jul 9th 2018, 09:23 |
slackebot4 |
! |
# |
Jul 9th 2018, 09:23 |
slackebot4 |
Command sent from Slack by josbeir: |
# |
Jul 9th 2018, 09:22 |
neon1024 |
Perhaps I should get that second coffee! |
# |
Jul 9th 2018, 09:22 |
neon1024 |
Hah, missing `echo` |
# |
Jul 9th 2018, 09:22 |
neon1024 |
Yes, you’re right hmic. |
# |
Jul 9th 2018, 09:22 |
neon1024 |
File uploaded https://cakesf.slack.com/files/U1BT622HW/FBLFJ3801/defining_a_custom_block.php / https://slack-files.com/T053DPNCM-FBLFJ3801-d9c864eb4b |
# |
Jul 9th 2018, 09:21 |
hmic |
i implemented another listener called containedModels that does exactly that... if you have a look at the relatedmodels listener, you will notice whz it does not work this way (in a view action) |
# |
Jul 9th 2018, 09:21 |
neon1024 |
Yeah it’s not working with an element either, so I think I have not defined my block correctly |
# |
Jul 9th 2018, 09:21 |
josbeir |
or is it a seperate instance? |
# |
Jul 9th 2018, 09:20 |
josbeir |
so the view inside a cell is not rendered using appview? |
# |
Jul 9th 2018, 09:20 |
hmic |
regarding the relatedModels thing, i run into the same problem-restriction |