sambit
sambit
I would favor 2 dockerfiles .. one with `essentials` and another `omakase`. Would result in fewer breakages down the line for the `essentials` variant methinks
focus on maintenance by core team should be given to `essentials` and the all-inclusive `omakase` option can be more community supported.. just my 2 cents as I would prefer a...
same on hetzner rescue system
using rosetta to run your terminal (iterm for me) also seems to do the trick! https://apple.stackexchange.com/questions/428768/on-apple-m1-with-rosetta-how-to-open-entire-terminal-iterm-in-x86-64-architec
nvm.. pulled trigger too early. fails with rosetta as well
I recently switched to Omakub and ubuntu for development due to a number of macos related issues after the ARM on mac transition for this exact reason.. Like you, I...
This is exactly what i need to have a before_action for rodauth controllers for captcha support.. e.g. `before_action :check_captcha, only: %i[create_account]`
It's not working with the current live latest rodauth-rails version.. but I can check again after this PR is merged 😃
perfect, I will implement my captcha check and check for `request.post` on the before_action.. is this ready in the current latest version of the gem or will you need to...
> @34code BTW, in the meanwhile you can just use a Rodauth hook: > > ```ruby > before_create_account_route do > rails_controller_instance.send(:check_captcha) if request.post? > end > ``` > > Another...