Kim Burgestrand
Kim Burgestrand
I saw this change on the [documentation site](https://kamal-deploy.org/docs/configuration/ssh/#config), but anything else than a boolean isn't accepted. Specifically this: > Set to [...], or to a file path (or array of...
I made a PR #1129 that seems to make this config option do something.
> @Burgestrand note this applies to `sshkit` config, not `ssh`. Definitely confusing that it doesn't apply elsewhere - probably should have made this an sshkit-specific config and plumbed it through....
Hi! Thanks for opening this issue. Revisiting past decisions is a good idea every now and then. I've read through all that you wrote, and I don't intend to add...
While I don't believe this is useful in every application, I can definitely see a case for auditing _sometimes_. Perhaps it's worth opening up the github wiki to allow more...
Oh, absolutely! You would probably [`rescue_from`](https://github.com/varvet/pundit?tab=readme-ov-file#rescuing-a-denied-authorization-in-rails) and trigger an audit event from there. The error raised has accessors to inspect what happened: https://github.com/varvet/pundit/blob/ec75796fbb6ff2e8c03e888f2c0028e10231810c/lib/pundit.rb#L27-L29 So, to copy the README with some...
Specifically ActiveAdmin aren't using `authorize` at all, they rolled their own Pundit adapter: https://github.com/activeadmin/activeadmin/blob/3-0-stable/lib/active_admin/pundit_adapter.rb Having a Pundit adapter makes sense, but it also makes an internal audit/logging solution in Pundit...