in reply to Re^2: Catalyst begin/end methods
in thread Catalyst begin/end methods

thank you!

I have ended up moving everything to auto, begin ( I was checking user permission to enter controller ) is better there anyhow - just return 0 to break flow,

end ( preparing things for templates specific to that controller ) did not have to be in end, it was just a matter of taste I guess, and no logical reason to do it there.

After reading the chart: my expectation was off, only the most specific match for begin and end is run. Auto does what I need here.

Thank you for the information, I did not find the part on begin/end ( or overlooked it ) in the docs for some reason.