faustinoaq changed the topic of #amber to: Welcome to Amber Framework community! | https://amberframework.org | Developer happiness, productivity and bare metal performance | GH: https://github.com/amberframework | Docs: https://docs.amberframework.org | Gitter: https://gitter.im/amberframework/amber | IRC Logger: https://irclog.whitequark.org/amber | Amber::Server.start
_whitelogger has joined #amber
_whitelogger has joined #amber
<FromGitter> <vifreefly> > Released Amber https://github.com/amberframework/amber/releases/tag/v0.11.3
_whitelogger has joined #amber
feepbot has quit [Ping timeout: 250 seconds]
feepbot has joined #amber
<FromGitter> <sdzyba> A question regarding `halt!` method. The documentation says `When you want a request to cease and return a particular message rather then rendering a page, you use Amber halt! to stop the request from continue execution.` (https://docs.amberframework.org/amber/guides/controllers/halt) ⏎ But it looks like `halt!` actually doesn't stop the request processing, it just sets status code and response header and action just
<FromGitter> ... continues it's execution...
<FromGitter> <sdzyba> Is there any way to actually stop the execution?
<FromGitter> <sdzyba> Since it makes it a bit verbose to do something like ⏎ ⏎ ```if data.nil? ⏎ halt! 404 ⏎ return ⏎ end ⏎ ...``` [https://gitter.im/amberframework/amber?at=5c3b49d420b78635b61865f9]