Allow unsecured access to Symfony object action in security.yml?

If your apps/*/config/security. Yml has default: is_secure: true You can define in the security. Yml of your module: index: credentials: pm_view show: credentials: pm_view filter: credentials: pm_view runReport: is_secure: false And remove from your module: all: is_secure: true.

Turns out the problem was with the way I was naming the element in security. Yml (sorry if the question wasn't clear enough to indicate this was probably the original problem). It works with listRunReport, so the code would like like: listRunReport: is_secure:false @arsenik was correct in that the all: is_secure: true was unnecessary, but unfortunately that didn't solve the problem (it can remain).

Lesson is that when using list object actions that end up getting named as executeListXYZ, it has to be labeled as listXYZ in security.yml.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions