Michal Sniatala

Results 119 comments of Michal Sniatala

Can you share the reason for two different config files? If you bring back the version from **Config\Queue**, can you test how the service is working - just like I...

Ok, so you get the error not when you `push` to the queue, but when you use the command `queue:work`? The problem is that the worker (and in general all...

Okay, let me think about it... this would require adding support for additional options (for selecting the config file) for every command.

No, sorry. This is not a good idea. If you use a custom config file, you should be required to run the worker with that config. The config files may...

Although I've prepared changes to fix this, I'm slowly coming to the conclusion that this is probably not a good idea, and I'd be inclined to remove the ability to...

The `redirect()` and `hxRedirect()` behave differently and set different headers. If we send `htmx` request it doesn't mean automatically we will want to use `hxRedirect()` and vice versa. I want...

You can name this helper function `autoRedirect()` or something similar - this can be discussed as we go. Unfortunately, I will not approve any changes to the existing methods, because...

> [#79 (comment)](https://github.com/michalsn/codeigniter-htmx/issues/79#issuecomment-2410660298) Real improve? Yes, but I would implement it a bit differently: ```php public function hxLocation(...): RedirectResponse { if (str_starts_with($path, 'http')) { $path = (string) service('uri', $path, false)->withScheme('')->setHost('');...

Good point, you can change it to `http://` and `https://`